This commit is contained in:
2026-06-20 16:44:40 +02:00
parent 4466b6c1ca
commit e38dcfca5a
9 changed files with 310 additions and 25 deletions
+3 -1
View File
@@ -9,6 +9,7 @@ pub mod auth;
pub mod category;
pub mod channel;
pub mod core;
pub mod gateway;
pub mod group;
pub mod message;
pub mod openapi;
@@ -30,7 +31,8 @@ pub fn router() -> OxRouter {
let api_routes = Router::new()
.merge(secure_routes)
.merge(auth::routes::router())
.merge(core::routes::router());
.merge(core::routes::router())
.merge(gateway::routes::router());
Router::new()
.nest("/api", api_routes)