Skip to main content

alux_http_actix/
lib.rs

1#![doc = include_str!("../README.md")]
2
3//! Interprets typed HTTP programs as executable actix-web routes.
4//!
5//! The interpretation chooses actix-web's extractors for input roles, its responses for output
6//! kinds, and `Arc` for the runtime handle of a semantic context. It also states an endpoint as what
7//! makes one, because actix-web configures its routes again for every worker.
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::*;