sqlx_ledger/account/
mod.rs

1//! [Account] holds a balance in a [Journal](crate::journal::Journal)
2mod entity;
3mod repo;
4
5pub use entity::*;
6pub use repo::*;