diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-29 19:34:59 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-29 19:34:59 -0500 |
commit | 8af75aef1754b4c2ce67a917182acc732051fc01 (patch) | |
tree | f64306919ae7fecb1a0cfb65415e5836f78209fc /src/main.rs | |
parent | admin page (diff) | |
download | xssbook-8af75aef1754b4c2ce67a917182acc732051fc01.tar.gz xssbook-8af75aef1754b4c2ce67a917182acc732051fc01.tar.bz2 xssbook-8af75aef1754b4c2ce67a917182acc732051fc01.zip |
refactor
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
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 |