robotech 0.9.5

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
11
12
13
14
15
16
17
18
#[cfg(feature = "base")]
pub mod cst;
#[cfg(feature = "crud")]
pub mod ctrl;
#[cfg(feature = "crud")]
pub mod db;
#[cfg(feature = "base")]
pub mod env;
#[cfg(feature = "base")]
pub mod log;
#[cfg(feature = "api")]
pub mod ro;
#[cfg(feature = "base")]
pub mod settings;
#[cfg(feature = "crud")]
pub mod svc;
#[cfg(feature = "web")]
pub mod web_server;