style: cargo fmt --all

This commit is contained in:
2026-05-31 05:31:42 +02:00
parent 4b31a0f74b
commit c2ebca0da0
138 changed files with 2422 additions and 1164 deletions

View File

@@ -1,5 +1,12 @@
use axum::{routing::{get, post}, Router};
use crate::{handlers::{auth, health}, openapi::openapi_router, state::AppState};
use crate::{
handlers::{auth, health},
openapi::openapi_router,
state::AppState,
};
use axum::{
Router,
routing::{get, post},
};
pub fn api_v1_router() -> Router<AppState> {
Router::new()