Files
optimclaw/src/history/mod.rs
T

13 lines
294 B
Rust

//! History and persistence layer.
//!
//! Stores job history, conversations, and actions in PostgreSQL for:
//! - Audit trail
//! - Learning from past executions
//! - Analytics and metrics
mod analytics;
mod store;
pub use analytics::{Analytics, JobStats, ToolStats};
pub use store::Store;