summaryrefslogtreecommitdiff
path: root/Config.hs
blob: 05b2bed262376f37287c5c2979b54328632a3d4a (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", "#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]
    }