style: move channels to /channels

This commit is contained in:
Radical 2025-05-29 20:11:50 +02:00
parent 461295c14a
commit 66c3aef609
9 changed files with 111 additions and 121 deletions

View file

@ -0,0 +1,11 @@
use actix_web::{web, Scope};
mod uuid;
pub fn web() -> Scope {
web::scope("/channels")
.service(uuid::get)
.service(uuid::delete)
.service(uuid::messages::get)
.service(uuid::socket::ws)
}