diff options
| author | Tolmachev Igor <me@igorek.dev> | 2025-10-22 17:00:28 +0300 |
|---|---|---|
| committer | Tolmachev Igor <me@igorek.dev> | 2025-10-22 17:00:28 +0300 |
| commit | e864d2653d50ba1c920776aaa14a1625c9fc9da4 (patch) | |
| tree | 4e4089d3fc249f9b4a64a9866b48a0e1f5de844b /src/main.rs | |
| parent | 67ed4e6bb82ac2645f9b7a014a8d635d7b80e821 (diff) | |
| download | queue_server-e864d2653d50ba1c920776aaa14a1625c9fc9da4.tar.gz queue_server-e864d2653d50ba1c920776aaa14a1625c9fc9da4.zip | |
Add invite tokens
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
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; | |||
| 2 | mod auth; | 2 | mod auth; |
| 3 | mod error; | 3 | mod error; |
| 4 | mod extract; | 4 | mod extract; |
| 5 | pub mod models; | 5 | mod models; |
| 6 | mod response; | 6 | mod response; |
| 7 | mod routers; | 7 | mod routers; |
| 8 | mod state; | 8 | mod state; |
| 9 | mod util; | ||
| 9 | 10 | ||
| 10 | pub use api::{AppOpenApi, tags}; | 11 | pub use api::{AppOpenApi, tags}; |
| 11 | pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password}; | 12 | pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password}; |
