summaryrefslogtreecommitdiff
path: root/app/Main.hs
blob: c4240c49562fe0ca07c1338f32242fd78eb8d850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Main where

import Lib
import qualified Network.Socket as N  -- network

myServer = "irc.netwichtig.de" :: String
myPort   = 6667 :: N.PortNumber
myChannels   = ["#nais-testing", "#nais"] :: [String]
myNick   = "nais" :: String

main :: IO ()
main = runBirch myServer myPort myNick myChannels