blob: a63529283b45bba6272eec6d122691690d50aa4c (
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 = IrcServer
{ 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 = ['@']
, ircServers = [kro]
}
|