summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-04-06 02:09:26 -0500
committerToby Vincent <tobyv@tobyvin.dev>2024-04-06 02:10:32 -0500
commit9822bc18bb0cb5e13104376ecefc6ec99d93b016 (patch)
tree0137399c270a69a2c09e7c0e4c41f64cad5dbbfe /src/lib.rs
parentf7dd456941dbc5f926a04935d3aaaa198741608e (diff)
feat: impl jwt auth middleware and user route
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e7502f9..85a4577 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,6 +2,7 @@ pub use error::{Error, Result};
pub use routes::init_router;
pub mod error;
+pub mod jwt;
pub mod model;
pub mod routes;
pub mod state;