FEAT: Added Help command (can't test yet due to Discord's Sync time)

REF: Changed the database name to reflect the bot's name (ariella instead of bot)
This commit is contained in:
Dan
2024-06-19 07:59:32 -04:00
parent 7430769b06
commit 150c4a89f0
3 changed files with 13 additions and 5 deletions

View File

@ -30,7 +30,7 @@ bot = Ariella()
# Database setup
async def init_db():
async with aiosqlite.connect("bot.db") as db:
async with aiosqlite.connect("ariella.db") as db:
await db.execute("""
CREATE TABLE IF NOT EXISTS user_notes (
user_id INTEGER PRIMARY KEY,