fbc-starter 0.1.24

A production-ready web server starter for Rust based on Axum, with built-in configuration, logging, CORS, database and Redis support
Documentation
1
2
3
4
5
6
7
8
9
/// HTTP 相关模块
///
/// 包含路由、处理器和中间件
pub mod handlers;
pub mod middleware;

// 重新导出常用类型
pub use handlers::{health_check, root};
pub use middleware::{create_cors_layer, request_logging_middleware, grpc_log_request, grpc_log_response};