Add proper logging, make commands modularized, add new commands and add event handler
Run cargo test / Run tests (push) Has been cancelled

This commit is contained in:
Elias Wendland
2026-07-04 22:56:07 +02:00
parent 1732644dd1
commit c7be6b70dc
16 changed files with 554 additions and 84 deletions
+7 -1
View File
@@ -1,6 +1,7 @@
CREATE TABLE IF NOT EXISTS auto_roles (
guild_id BIGINT NOT NULL,
role_id BIGINT NOT NULL
role_id BIGINT NOT NULL,
enabled BOOLEAN NOT NULL
);
CREATE TABLE IF NOT EXISTS reaction_role (
@@ -21,3 +22,8 @@ CREATE TABLE IF NOT EXISTS admin_roles (
role_id BIGINT NOT NULL
);
CREATE TABLE IF NOT EXISTS users (
guild_id BIGINT NOT NULL,
user_id BIGINT NOT NULL,
settings_get_messaged_about_errors BOOLEAN NOT NULL
);