mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-25 14:53:34 +00:00
13 lines
294 B
Rust
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;
|