usage_monitor_cli/lib.rs
1//! Core library for Usage Monitor: usage models (rate windows, costs,
2//! credits, plans), provider implementations, the provider registry, and the
3//! persisted application configuration.
4
5pub mod config;
6pub mod error;
7pub mod model;
8pub mod provider;
9
10pub use config::{AccountSettings, AppConfig, DEFAULT_ACCOUNT, ProviderSettings, ProviderState};
11pub use error::SpendPanelError;
12pub use model::*;
13pub use provider::*;