aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 090fd75..4ab5aeb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,11 +6,11 @@ mod routers;
6mod state; 6mod state;
7 7
8pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password}; 8pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password};
9use axum::Router;
10pub use error::{ApiError, ApiResult}; 9pub use error::{ApiError, ApiResult};
11pub use response::{ErrorResponse, FailResponse, SuccessResponse}; 10pub use response::{ErrorResponse, FailResponse, SuccessResponse};
12pub use state::AppState; 11pub use state::AppState;
13 12
13use axum::Router;
14use sea_orm::Database; 14use sea_orm::Database;
15use tokio::net::TcpListener; 15use tokio::net::TcpListener;
16use tower_http::trace::TraceLayer; 16use tower_http::trace::TraceLayer;