rust-microservice 0.1.3

A microservices framework in Rust whichs provides common functionalities for developing Web APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Cmd module provides the command-line functions and structures for
/// this application. It defines all supported flags, arguments, and
/// subcommands.
///
/// # Additional Modules
///
/// - `root` — module for the CLI root command.
/// - `run` — module for the run command that starts the API server.
/// - `style` — module style and themes used by CLI.
pub mod root;
pub mod run;
mod style;