From d9ed52fc239e3547eb99fe03bd296ab2808d2ebc Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Mon, 8 Apr 2024 16:31:44 -0500 Subject: wip: impl jwt handling --- src/routes.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/routes.rs') 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; -- cgit v1.2.3-70-g09d2