blob: 46af6cf53cb98c4a5327a6728a78746ee3026663 (
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 = ["#shelly-testing", "#shelly"] :: [String]
myNick = "shelly" :: String
main :: IO ()
main = runBirch myServer myPort myNick myChannels
|