1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-01 13:37:49 +00:00

Todo add about

This commit is contained in:
RGBCube 2024-01-05 16:04:25 +03:00
parent 1f6c5ebddd
commit e75ff0c0c0
No known key found for this signature in database

View file

@ -1,3 +1,4 @@
// mod about;
mod assets; mod assets;
mod index; mod index;
@ -9,5 +10,6 @@ use actix_web::{
pub fn handler() -> Scope { pub fn handler() -> Scope {
web::scope("") web::scope("")
.service(index::handler) .service(index::handler)
// .service(about::handler)
.service(assets::handler) .service(assets::handler)
} }