aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2025-10-22 17:00:28 +0300
committerTolmachev Igor <me@igorek.dev>2025-10-22 17:00:28 +0300
commite864d2653d50ba1c920776aaa14a1625c9fc9da4 (patch)
tree4e4089d3fc249f9b4a64a9866b48a0e1f5de844b /src/main.rs
parent67ed4e6bb82ac2645f9b7a014a8d635d7b80e821 (diff)
downloadqueue_server-e864d2653d50ba1c920776aaa14a1625c9fc9da4.tar.gz
queue_server-e864d2653d50ba1c920776aaa14a1625c9fc9da4.zip
Add invite tokens
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 4541646..7ed0fdd 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,10 +2,11 @@ mod api;
2mod auth; 2mod auth;
3mod error; 3mod error;
4mod extract; 4mod extract;
5pub mod models; 5mod models;
6mod response; 6mod response;
7mod routers; 7mod routers;
8mod state; 8mod state;
9mod util;
9 10
10pub use api::{AppOpenApi, tags}; 11pub use api::{AppOpenApi, tags};
11pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password}; 12pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password};