Skip to main content

ccstat_provider_codex/
lib.rs

1//! Codex provider for ccstat
2//!
3//! This crate implements the provider trait for OpenAI Codex,
4//! handling JSONL session parsing with cumulative-to-delta token conversion.
5
6pub mod data_loader;
7
8pub use data_loader::DataLoader;