]> git.netwichtig.de Git - user/henk/code/haskell/birch.git/blob - app/Main.hs
46af6cf53cb98c4a5327a6728a78746ee3026663
[user/henk/code/haskell/birch.git] / app / Main.hs
1 module Main where
2
3 import Lib
4 import qualified Network.Socket as N  -- network
5
6 myServer = "irc.netwichtig.de" :: String
7 myPort   = 6667 :: N.PortNumber
8 myChannels   = ["#shelly-testing", "#shelly"] :: [String]
9 myNick   = "shelly" :: String
10
11 main :: IO ()
12 main = runBirch myServer myPort myNick myChannels