summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 231c1c15830b024aa5d410be78dd84830b265516 (plain)
1
2
3
4
5
6
7
pub use error::{Error, Result};
pub use routes::router;

pub mod error;
pub mod model;
pub mod routes;
pub mod state;