rust_ledger 0.4.0

CLI accounting tool
1
2
3
4
5
6
7
mod cli;
mod error;
mod model;

fn main() -> Result<(), error::Error> {
    cli::run()
}