alux-http-typescript 0.1.0

TypeScript client interpretation of ALUX typed HTTP programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

//! Interprets typed HTTP programs as the TypeScript client that calls them.
//!
//! The same program an executing interpretation answers is read here from the other side: what a
//! caller states, where each argument goes, and what comes back. Nothing about the surface is
//! written a second time in another language.

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

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