1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![crate_name = "mount"] #![deny(missing_docs)] #![cfg_attr(test, deny(warnings))] //! `Mount` provides mounting middleware for the Iron framework. extern crate iron; extern crate url; extern crate sequence_trie; pub use mount::{Mount, OriginalUrl}; mod mount;