git-subtree-dir: libdrcr git-subtree-mainline: a40e2f81ba7f5d01ea3fbce037d47c1949d1b64d git-subtree-split: 0d680275df56300ff9059928f5611b9da2313b74
15 lines
383 B
Rust
15 lines
383 B
Rust
pub mod account_config;
|
|
pub mod db;
|
|
pub mod model;
|
|
pub mod reporting;
|
|
pub mod serde;
|
|
pub mod util;
|
|
|
|
/// Data type used to represent transaction and account quantities
|
|
pub type QuantityInt = i64;
|
|
|
|
// Magic strings
|
|
// TODO: Make this configurable
|
|
pub const CURRENT_YEAR_EARNINGS: &'static str = "Current Year Earnings";
|
|
pub const RETAINED_EARNINGS: &'static str = "Retained Earnings";
|