]> git.netwichtig.de Git - user/henk/code/haskell/birch.git/blobdiff - app/Main.hs
Completed first steps
[user/henk/code/haskell/birch.git] / app / Main.hs
index de1c1ab35c4ad21e14ec824121b9710418b75c39..46af6cf53cb98c4a5327a6728a78746ee3026663 100644 (file)
@@ -1,6 +1,12 @@
 module Main where
 
 import Lib
+import qualified Network.Socket as N  -- network
+
+myServer = "irc.netwichtig.de" :: String
+myPort   = 6667 :: N.PortNumber
+myChannels   = ["#shelly-testing", "#shelly"] :: [String]
+myNick   = "shelly" :: String
 
 main :: IO ()
-main = someFunc
+main = runBirch myServer myPort myNick myChannels