1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-31 13:07:46 +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 index;
@ -9,5 +10,6 @@ use actix_web::{
pub fn handler() -> Scope {
web::scope("")
.service(index::handler)
// .service(about::handler)
.service(assets::handler)
}