summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2023-01-29 19:34:59 -0500
committerTyler Murphy <tylermurphy534@gmail.com>2023-01-29 19:34:59 -0500
commit8af75aef1754b4c2ce67a917182acc732051fc01 (patch)
treef64306919ae7fecb1a0cfb65415e5836f78209fc /src/main.rs
parentadmin page (diff)
downloadxssbook-8af75aef1754b4c2ce67a917182acc732051fc01.tar.gz
xssbook-8af75aef1754b4c2ce67a917182acc732051fc01.tar.bz2
xssbook-8af75aef1754b4c2ce67a917182acc732051fc01.zip
refactor
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index b3f5cd2..bee40d7 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -19,11 +19,11 @@ use crate::{
types::extract::RouterURI,
};
+mod admin;
mod api;
mod console;
mod database;
mod types;
-mod admin;
async fn serve<B>(req: Request<B>, next: Next<B>) -> Response
where