X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=app%2FMain.hs;h=46af6cf53cb98c4a5327a6728a78746ee3026663;hb=5530bd9742bc73c2c6631c20c942d3ecd4b81505;hp=de1c1ab35c4ad21e14ec824121b9710418b75c39;hpb=853539c80ebe2124ff9191b48f717a4386d5faee;p=user%2Fhenk%2Fcode%2Fhaskell%2Fbirch.git 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