rocket/router/
mod.rs

1//! Rocket's router.
2
3mod router;
4mod collider;
5mod matcher;
6
7pub(crate) use router::*;
8pub(crate) use collider::*;