khive_pack_session/mirror/mod.rs
1//! Background live-mirror service for Claude Code and Codex CLI session transcripts.
2//!
3//! Exposes the three sub-modules and re-exports the public surface used by
4//! `SessionPack::warm()` and tests.
5
6pub mod ingest;
7pub mod parse;
8pub mod service;
9
10pub use ingest::{LineTailSource, MirrorSource, MirrorStats};
11pub use parse::{parse_cc_line, parse_codex_line};
12pub use service::{run_mirror_service, MirrorConfig};