Archived
1
0
Fork 0
This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
hsbot/Config.hs
2009-08-07 00:10:45 +02:00

27 lines
540 B
Haskell

module Config
( config
) where
import Hsbot.Core
-- | Imported plugins goes there
-- | User server
kro :: IrcServer
kro = IrcServer
{ address = "kro.corp"
, port = 6667
, channels = ["#geek", "#shbot"]
, nickname = "hsbot"
, password = ""
, realname = "The One True bot, with it's haskell soul."
, administrators = ["julien"]
}
-- | User configuration
config :: Config
config = Config
{ commandPrefixes = ['@']
, ircServers = [kro]
}