summaryrefslogtreecommitdiff
path: root/app/Main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Main.hs')
-rw-r--r--app/Main.hs8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index de1c1ab..46af6cf 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -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