aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2025-09-24 11:59:48 +0300
committerTolmachev Igor <me@igorek.dev>2025-09-24 11:59:48 +0300
commit833cac68c1bbf7dd6680d07406495d57a2706acc (patch)
treec50fb097160f4524d53182ceb83feb163b97cc4b /src/main.rs
parent9c65cda5956f91f39809337d7b85a897107da8ae (diff)
downloadqueue_server-833cac68c1bbf7dd6680d07406495d57a2706acc.tar.gz
queue_server-833cac68c1bbf7dd6680d07406495d57a2706acc.zip
Move Account model into a separate module
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index fe2589a..560225e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -2,6 +2,7 @@ mod api;
2mod auth; 2mod auth;
3mod error; 3mod error;
4mod extract; 4mod extract;
5pub mod models;
5mod response; 6mod response;
6mod routers; 7mod routers;
7mod state; 8mod state;