hitomi/bot/__init__.py

8 lines
281 B
Python
Raw Normal View History

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