#![doc = include_str!("../README.md")]
extern crate self as alux_http;
#[macro_use]
mod vocabulary;
mod algebra;
mod answer;
mod chunks;
mod cookie;
mod header;
mod method;
mod named;
mod output;
mod parts;
mod path;
mod program;
mod server;
mod status;
mod with;
pub use algebra::*;
pub use alux_ext::macros::http;
pub use answer::*;
pub use chunks::*;
pub use cookie::*;
pub use header::*;
pub use method::*;
pub use named::*;
pub use output::*;
pub use parts::*;
pub use path::*;
pub use program::*;
pub use server::*;
pub use status::*;
pub use with::*;