diff options
author | Hendrik Jaeger <git-commit@henk.geekmail.org> | 2019-11-30 15:13:31 +0100 |
---|---|---|
committer | Hendrik Jaeger <git-commit@henk.geekmail.org> | 2019-11-30 15:13:31 +0100 |
commit | 1ed9472b5de9e6ded7cafde1bacb4bf44389856c (patch) | |
tree | b7e405b74016710a188e8d03e6f7ffb744d5214b /app/Main.hs | |
parent | 5530bd9742bc73c2c6631c20c942d3ecd4b81505 (diff) |
Basic functionality
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Main.hs b/app/Main.hs index 46af6cf..c4240c4 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -5,8 +5,8 @@ import qualified Network.Socket as N -- network myServer = "irc.netwichtig.de" :: String myPort = 6667 :: N.PortNumber -myChannels = ["#shelly-testing", "#shelly"] :: [String] -myNick = "shelly" :: String +myChannels = ["#nais-testing", "#nais"] :: [String] +myNick = "nais" :: String main :: IO () main = runBirch myServer myPort myNick myChannels |