blob: 44278f64eb7f45a3dcb67cb5699f91acc14c324a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
module Config
( config
) where
import Hsbot.Core
-- | Imported plugins goes there
-- | User server
kro = Server
{ address = "kro.corp"
, port = 6667
, channels = ["#geek"]
, nickname = "hsbot"
, password = ""
, realname = "The One True bot, with it's haskell soul."
, administrators = ["julien"]
}
-- | User configuration
config :: Config
config = Config
{ commandPrefixes = ['@']
, servers = [kro]
}
|