1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![cfg_attr(test, deny(warnings))]

extern crate iron;
extern crate url;

mod route_recognizer;

pub use router::{Router, NoRoute, TrailingSlash, MetaRouter};
pub use route_recognizer::Params;
pub use url_for::url_for;

mod router;
mod macros;
mod url_for;