alux-http-actix 0.1.0

actix-web interpretation of ALUX typed HTTP programs
Documentation
#![doc = include_str!("../README.md")]

//! Interprets typed HTTP programs as executable actix-web routes.
//!
//! The interpretation chooses actix-web's extractors for input roles, its responses for output
//! kinds, and `Arc` for the runtime handle of a semantic context. It also states an endpoint as what
//! makes one, because actix-web configures its routes again for every worker.

mod handler;
mod input;
mod output;
mod route;
mod server;

pub use handler::*;
pub use input::*;
pub use output::*;
pub use route::*;
pub use server::*;