slack-api-0.1: src/Web/Slack/Config.hs
module Web.Slack.Config (SlackConfig(..)) where
-- | Configuration options needed to connect to the Slack API
data SlackConfig = SlackConfig
{ slackApiToken :: String -- ^ API Token for Bot
} deriving (Show)