File: SimpleIRC.hs

package info (click to toggle)
haskell-simpleirc 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 88 kB
  • sloc: haskell: 607; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- |
-- Module : Network.SimpleIRC
-- Copyright : (c) Dominik Picheta 2010
-- License : BSD3
--
-- Maintainer : morfeusz8@gmail.com
-- Stability : Alpha
-- Portability : portable
--
-- Simple and efficient IRC Library
--
module Network.SimpleIRC (
    -- * Core
    module Network.SimpleIRC.Core

    -- * Messages
  , module Network.SimpleIRC.Messages


  ) where

import Network.SimpleIRC.Core
import Network.SimpleIRC.Messages