cash/lib.rs
1use std::collections::HashMap;
2
3mod structs;
4mod traits;
5mod helpers;
6
7pub use structs::cash::Cash;
8pub use structs::logmap::LogMap;
9
10pub use traits::{
11 create::Create,
12 calculate::Calculate,
13 format::Format,
14 exchange::Exchange,
15};
16
17pub use helpers::amount::sanitize_negative;
18
19// TODO write API documentation