mount 0.4.0

Mounting middleware for Iron.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![crate_name = "mount"]
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]

//! `Mount` provides mounting middleware for the Iron framework.

extern crate iron;
extern crate sequence_trie;

pub use mount::{Mount, OriginalUrl, NoMatch};

mod mount;