diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
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; | |||
| 6 | mod state; | 6 | mod state; |
| 7 | 7 | ||
| 8 | pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password}; | 8 | pub use auth::{JwtClaims, create_jwt, create_password, validate_jwt, validate_password}; |
| 9 | use axum::Router; | ||
| 10 | pub use error::{ApiError, ApiResult}; | 9 | pub use error::{ApiError, ApiResult}; |
| 11 | pub use response::{ErrorResponse, FailResponse, SuccessResponse}; | 10 | pub use response::{ErrorResponse, FailResponse, SuccessResponse}; |
| 12 | pub use state::AppState; | 11 | pub use state::AppState; |
| 13 | 12 | ||
| 13 | use axum::Router; | ||
| 14 | use sea_orm::Database; | 14 | use sea_orm::Database; |
| 15 | use tokio::net::TcpListener; | 15 | use tokio::net::TcpListener; |
| 16 | use tower_http::trace::TraceLayer; | 16 | use tower_http::trace::TraceLayer; |
