acc 0.3.0

plaintext double-entry accounting command line tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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 navigate;
pub mod print;
pub mod register;
pub mod update;

pub(crate) mod util;