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