Implement Rust-based emote database and REST API

This commit is contained in:
Ganonmaster
2026-03-18 13:18:40 +00:00
parent 4642587f5c
commit 33acab96a2
12 changed files with 4761 additions and 0 deletions
@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS emotes (
uuid TEXT PRIMARY KEY NOT NULL,
name TEXT NOT NULL UNIQUE,
alias TEXT,
image_key TEXT NOT NULL,
created TEXT NOT NULL,
modified TEXT NOT NULL
);