summaryrefslogtreecommitdiff
path: root/Hsbot/Config.hs
blob: 9ce62c58fe3924f603ed148df598ae4a4904000a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Hsbot.Config
    ( Config(..)
    , defaultConfig
    ) where

import Hsbot.Irc.Config (IrcConfig)

-- | Configuration data type
data Config = Config
    { ircConfigs :: [IrcConfig]
    }

-- | User configuration
defaultConfig :: Config
defaultConfig = Config
    { ircConfigs = []
    }