invoice_cli/lib.rs
1// Library entry — exposes render helpers so examples can reuse encode_qr.
2// `money` and `tax` are re-exported from finance-core so the accounting suite
3// shares one source of truth for currency/tax math. Internal callers keep
4// using `crate::money::…` / `crate::tax::…` unchanged.
5pub use finance_core::money;
6pub use finance_core::tax;
7
8pub mod cli;
9pub mod commands;
10pub mod config;
11pub mod db;
12pub mod error;
13pub mod output;
14pub mod render;
15pub mod typst_assets;