blob: a2c5a39105d5a6856407575e6f8e7ba5a1eddc17 (
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
27
|
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]
}
|