robotech 1.4.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_config::CorsConfig;
pub use ctrl::ctrl_error::CtrlError;
pub use ctrl::ctrl_utils;
pub use server::web_server_config::WebServerConfig;
pub use server::web_server_utils::start_web_server;