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

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