Minor changes

This commit is contained in:
Ethan O'Brien
2026-07-03 00:40:06 -05:00
parent d4a6a56a27
commit 6b465eca8e
19 changed files with 2929 additions and 15 deletions

View File

@@ -20,6 +20,7 @@ pub mod serial_code;
pub mod web;
pub mod card;
pub mod shop;
pub mod custom_song;
pub mod webui;
pub mod clear_rate;
pub mod exchange;
@@ -141,6 +142,7 @@ pub fn configure(cfg: &mut actix_web::web::ServiceConfig) {
)
.configure(card::routes)
.configure(chat::routes)
.configure(custom_song::routes)
.configure(debug::routes)
.configure(event::routes)
.configure(exchange::routes)
@@ -166,4 +168,5 @@ pub fn configure(cfg: &mut actix_web::web::ServiceConfig) {
actix_web::web::scope("/v1.0")
.configure(gree::routes)
);
cfg.configure(custom_song::web_routes);
}