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
//! HTTP module provides the HTTP-related functions and structures
//! for this application.
//!
//! # Submodules
//!
//! - `health` — module that provides the health check endpoint.
//! - `web` — module that provides the web server over HTTP.
pub mod health;
pub mod web;