alux_http_rocket/lib.rs
1#![doc = include_str!("../README.md")]
2
3//! Interprets typed HTTP programs as executable Rocket routes.
4//!
5//! Rocket states a method on every route and builds a response that borrows the request it answers,
6//! so this interpretation mounts one route per endpoint and states what an endpoint answers with as
7//! a value the route hands over.
8
9mod handler;
10mod input;
11mod message;
12mod output;
13mod route;
14mod server;
15
16pub use handler::*;
17pub use input::*;
18pub use message::*;
19pub use output::*;
20pub use route::*;
21pub use server::*;