amoeba 1.0.1

A lightweight HTTP API library for Rust
Documentation
1
2
3
4
5
6
7
8
//! Convenience re-export of all public types.
//!
//! Add `use amoeba::prelude::*;` to import everything at once.

pub use crate::{
    http_error::HttpError, middleware::Middleware, request::Request, response::ContentType,
    response::Response, route::Route, server::Server,
};