post webrtc intégration

This commit is contained in:
2026-09-12 21:11:14 +02:00
parent 6b8cccc082
commit 9a07b368d6
27 changed files with 2180 additions and 584 deletions
+4 -1
View File
@@ -18,6 +18,7 @@ pub mod role;
pub mod server;
pub mod server_item_order;
pub mod user;
pub mod voice;
pub fn router() -> OxRouter {
// Routes nécessitant une authentification
@@ -41,7 +42,9 @@ pub fn router() -> OxRouter {
.merge(core::routes::router());
let public_attachment_routes = attachment::routes::public_router();
let ws_routes = Router::new().merge(gateway::routes::router());
let ws_routes = Router::new()
.merge(gateway::routes::router())
.merge(voice::routes::router());
Router::new()
.nest("/api", api_routes)