aboutsummaryrefslogblamecommitdiffstats
path: root/src/lib.rs
blob: 2bcd120babcf73d2313b966f3d8fd6fa18527e45 (plain) (tree)
1
2
3
4
5
6
7






                                                   
mod db;
mod error;
mod task;
mod timestamp;

pub use error::Error;
pub type Result<T> = std::result::Result<T, Error>;