1//! [Entries](Entry) represent discrete changes in the ledger. Grouped as [Transaction](crate::transaction::Transaction)s 2mod entity; 3mod repo; 4 5pub use entity::*; 6pub use repo::*;