feat: aka message slash command feature

This commit is contained in:
2025-11-30 10:49:47 +01:00
parent 0b5308d1e9
commit 726e19565e
3 changed files with 85 additions and 2 deletions

View File

@@ -16,3 +16,9 @@ CREATE TABLE IF NOT EXISTS black_list (
date_assigned TEXT,
reason TEXT
);
CREATE TABLE IF NOT EXISTS aka_list (
id INTEGER PRIMARY KEY AUTOINCREMENT,
aka TEXT NOT NULL,
response TEXT NOT NULL
);