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
7 lines
200 B
Python
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)
|