WIP: servers and channels #9

Draft
radical wants to merge 30 commits from wip/messaging into main
2 changed files with 5 additions and 0 deletions
Showing only changes of commit d72214eb56 - Show all commits

View file

@ -1,3 +1,7 @@
use actix_web::{web, Scope};
mod uuid;
pub fn web() -> Scope { pub fn web() -> Scope {
web::scope("/channels") web::scope("/channels")
} }

View file

@ -0,0 +1 @@
mod messages;