9 lines
149 B
Haskell
9 lines
149 B
Haskell
module Hsbot.Config
|
|
( BotConfig (..)
|
|
) where
|
|
|
|
import Hsbot.Irc.Config
|
|
|
|
-- | Configuration data type
|
|
data BotConfig = IrcBotConfig IrcConfig
|
|
|