#!/usr/bin/env python
"""helpdeskbot.

Utility bot for Discord

Usage:
  helpdeskbot <channel> <token_file> <log_file>

Options:
  <channel>     Name of channel to respond in
  <token_file>  File containing bot's Discord API token
  <log_file>    Log filename
  -h --help     Show this screen.
"""
from helpdeskbot.helpdeskbot import HelpDeskBot
from docopt import docopt


args = docopt(__doc__)
helpdeskbot = HelpDeskBot(args['<channel>'], args['<token_file>'], args['<log_file>'])
helpdeskbot.run()

