summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
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