1 2 3 4 5 6 7 8 9
//! LLM-CostOps CLI - Command-line interface //! //! This crate provides the command-line interface for LLM Cost Operations, //! including database initialization, data ingestion, querying, and reporting. pub mod cli; // Re-export CLI types pub use cli::{Cli, Commands, PricingCommands};