Add /version endpoint and GitHub Actions release workflow

This commit is contained in:
Ganonmaster
2026-03-18 13:42:40 +00:00
parent 33acab96a2
commit abc6cf1ecd
5 changed files with 119 additions and 0 deletions
+1
View File
@@ -54,6 +54,7 @@ async fn main() {
let app = Router::new()
.route("/", get(routes::emotes::root))
.route("/version", get(routes::version::version))
.route("/json", get(routes::emotes::list_emotes))
.route("/emotes", post(routes::emotes::create_emote))
.route("/emotes/{uuid}", put(routes::emotes::update_emote))