alux-http 0.1.0

Composable, interpreter-independent HTTP programs for meaning-first Rust design
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

extern crate self as alux_http;

mod algebra;
mod output;
mod path;
mod program;
mod with;

pub use algebra::*;
pub use alux_ext::macros::http;
pub use output::*;
pub use path::*;
pub use program::*;
pub use with::*;