robotech 1.1.0

Backend service implementation for the RoboTech platform, providing RESTful APIs and business logic for web applications.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod cors;
pub mod ctrl;
pub mod server;

// 重新导出结构体,简化外部引用
pub use cors::cors_settings::CorsSettings;
pub use ctrl::ctrl_error;
pub use ctrl::ctrl_utils;
pub use server::web_server_settings::WebServerSettings;
pub use server::web_server_utils::start_web_server;