hitomi/bot/__init__.py
Brian S. Stephan 1ef8318f67 start Django project, add basic Discord bot
doesn't do much other than connect, but the idea generally works, so
hooray?

now just to make sure i can actually use the decorator in other modules
properly
2018-01-08 09:30:31 -06:00

7 lines
200 B
Python

"""Discord bot Hitomi and its library functions."""
from discord.ext import commands
BOT_DESCRIPTION = "A simple Discord bot."
hitomi = commands.Bot(command_prefix='!', description=BOT_DESCRIPTION)