swindon 0.5.2

An HTTP edge (frontend) server with smart websockets support
1
2
3
4
5
6
7
8
9
10
11
12
use intern::HandlerName;
use routing::RoutingTable;

use quire::validate::{Mapping, Scalar};


pub type Routing = RoutingTable<HandlerName>;

pub fn validator<'x>() -> Mapping<'x> {
    Mapping::new(Scalar::new(), Scalar::new())
}