amoeba 0.1.1

A lightweight HTTP API library for Rust
Documentation
mod html;
mod http_error;
mod json;
mod middleware;
mod request;
mod response;
mod route;
mod server;

pub use crate::{
    html::Html,
    http_error::HttpError,
    json::{FromJson, IntoJson, Json, JsonValue},
    middleware::Middleware,
    request::{FromBytes, FromRequest, Request},
    response::{ContentType, IntoBytes, IntoResponse, Response},
    route::Route,
    server::Server,
};