1
2
3
4
5
6
7
8
9
10
//! Solution domain models.

mod route;
pub use self::route::{Activity, Commute, CommuteInfo, Place, Route};

mod registry;
pub use self::registry::Registry;

mod tour;
pub use self::tour::{Leg, Tour};