fix: make server channel template not error out

This commit is contained in:
Radical 2025-05-04 01:18:24 +02:00
parent 6abd2a9d52
commit d72214eb56
2 changed files with 5 additions and 0 deletions

View file

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

View file

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