File size: 205 Bytes
bbb1195
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
// Middleware 模块 - Axum 中间件

pub mod auth;
pub mod basic_auth;
pub mod cors;
pub mod logging;

pub use auth::auth_middleware;
pub use basic_auth::basic_auth_middleware;
pub use cors::cors_layer;