Skip to main content

alux_http_text/
lib.rs

1#![doc = include_str!("../README.md")]
2
3//! Interprets typed HTTP programs as readable route and type descriptions.
4//!
5//! The text interpretation executes no handler. It records the selectors, extractor roles, argument
6//! product, handler result, and output conversion each endpoint denotes, which makes it the neutral
7//! witness that an HTTP program means a surface rather than a framework callback.
8
9mod handler;
10mod input;
11mod output;
12mod route;
13
14pub use handler::*;
15pub use input::*;
16pub use output::*;
17pub use route::*;