alux_http_salvo/lib.rs
1#![doc = include_str!("../README.md")]
2
3//! Interprets typed HTTP programs as executable Salvo routes.
4//!
5//! The interpretation chooses Salvo's readers for input roles, its response for output kinds, and
6//! `Arc` for the runtime handle of a semantic context. A Salvo handler writes into the response it
7//! is given, so every output kind here answers with one.
8
9mod handler;
10mod input;
11mod output;
12mod route;
13mod server;
14
15pub use handler::*;
16pub use input::*;
17pub use output::*;
18pub use route::*;
19pub use server::*;