summaryrefslogtreecommitdiffstats
path: root/src/routes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.rs')
-rw-r--r--src/routes.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/routes.rs b/src/routes.rs
index 897b3cb..73a6dc4 100644
--- a/src/routes.rs
+++ b/src/routes.rs
@@ -8,9 +8,12 @@ use axum::{
use axum_extra::routing::RouterExt;
use tower_http::cors::CorsLayer;
-use crate::{jwt::authenticate, state::AppState};
+use crate::state::AppState;
+
+use self::jwt::authenticate;
mod healthcheck;
+mod jwt;
mod login;
mod register;
mod user;