ccstat_pricing/lib.rs
1//! Pricing fetcher and cost calculator for ccstat
2//!
3//! This crate handles fetching model pricing data from LiteLLM
4//! and calculating costs from token usage.
5
6pub mod cost_calculator;
7pub mod pricing_fetcher;
8
9pub use cost_calculator::CostCalculator;
10pub use pricing_fetcher::PricingFetcher;