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