Skip to main content

monarch_mcp/
lib.rs

1//! Library facade — exposes internal modules for large (live) integration tests.
2//!
3//! The binary crate (`src/main.rs`) uses these modules directly. This file
4//! re-exports them so `tests/live_integration.rs` can import them without
5//! duplicating the module graph.
6
7pub mod account_inventory;
8pub mod asset_allocation;
9pub mod budget_review;
10pub mod cashflow_forecast;
11pub mod client;
12pub mod error;
13pub mod financial_overview;
14pub mod goals;
15pub mod inspect_transactions;
16pub mod net_worth_trend;
17pub mod progress_vs_goals;
18pub mod recurring_scan;
19pub mod retirement_readiness;
20pub mod savings_rate;
21pub mod spending_history;
22pub mod spending_report;
23pub mod subscription_audit;
24pub mod tools;
25pub mod triage;