Skip to main content

alux_http_typescript/
lib.rs

1#![doc = include_str!("../README.md")]
2
3//! Interprets typed HTTP programs as the TypeScript client that calls them.
4//!
5//! The same program an executing interpretation answers is read here from the other side: what a
6//! caller states, where each argument goes, and what comes back. Nothing about the surface is
7//! written a second time in another language.
8
9mod handler;
10mod input;
11mod output;
12mod route;
13
14pub use handler::*;
15pub use input::*;
16pub use output::*;
17pub use route::*;