use std::collections::HashMap;
mod structs;
mod traits;
mod helpers;
pub use structs::cash::Cash;
pub use structs::logmap::LogMap;
pub use traits::{
create::Create,
calculate::Calculate,
format::Format,
exchange::Exchange,
};
pub use helpers::amount::sanitize_negative;