envelope_cli/reports/mod.rs
1//! Reports module for EnvelopeCLI
2//!
3//! Provides various financial reports including budget overview,
4//! spending analysis, account registers, and net worth summaries.
5
6pub mod account_register;
7pub mod budget_overview;
8pub mod net_worth;
9pub mod spending;
10
11pub use account_register::{AccountRegisterReport, RegisterEntry, RegisterFilter};
12pub use budget_overview::{BudgetOverviewReport, CategoryReportRow, GroupReportRow};
13pub use net_worth::{NetWorthReport, NetWorthSummary};
14pub use spending::{SpendingByCategory, SpendingReport};