lxy 0.1.1

A convenient async http and RPC framework in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! HTTP server support for lxy framework

mod app_builder_ext;
mod config;
pub mod error;
mod middlewares;
mod routing;
mod server;

pub use config::ServerConfig;
pub use error::HttpResult;
pub use routing::*;
pub(crate) use server::HttpServer;