summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorHendrik Jaeger <git-commit@henk.geekmail.org>2019-10-21 18:34:41 +0200
committerHendrik Jaeger <git-commit@henk.geekmail.org>2019-10-21 18:34:41 +0200
commit5530bd9742bc73c2c6631c20c942d3ecd4b81505 (patch)
tree15f5234c63410e27683e1b071d7263cbd233e9a8 /app
parent853539c80ebe2124ff9191b48f717a4386d5faee (diff)
Completed first steps
Diffstat (limited to 'app')
-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