acc 0.4.1

plaintext double-entry accounting command line tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! User-facing commands. Each command lives in its own folder; the
//! folder name matches the clap subcommand name.

pub mod account;
pub mod accounts;
pub mod balance;
pub mod checker;
pub mod codes;
pub mod commodities;
pub mod diff;
pub mod format;
pub mod navigate;
pub mod print;
pub mod register;
pub mod update;

pub(crate) mod util;