File: IRC.hs

package info (click to toggle)
haskell-irc 0.6.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 96 kB
  • sloc: haskell: 464; makefile: 4
file content (25 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
-- |
-- Module      : Network.IRC
-- Copyright   : (c) Trevor Elliott 2007
-- License     : BSD3
--
-- Maintainer  : trevor@geekgateway.com
-- Stability   : experimental
-- Portability : non-portable
--
-- library for parsing IRC messages
--
module Network.IRC (
    -- * Parsers
    module Network.IRC.Parser

    -- * Base
  , module Network.IRC.Base
  
    -- * Message API
  , module Network.IRC.Commands
  ) where

import Network.IRC.Parser
import Network.IRC.Base
import Network.IRC.Commands