amoeba 1.0.1

A lightweight HTTP API library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A lightweight, single-threaded HTTP API framework for Rust.
//!
//! Attach typed handlers to routes and carry application state through a generic context `C`.
//! Import all public types at once with [`prelude`].

mod body;
mod http_error;
mod middleware;
pub mod prelude;
mod request;
mod response;
mod route;
mod server;