1 2 3 4 5 6 7 8 9 10 11
//! A personal task management system, based on `JSON` files. //! //! ## WARNING: //! //! This crate is not intended to be used by others. pub mod bulk; pub mod effectors; pub mod error; pub mod task; pub mod tasklist; pub use error::*;