13 lines
264 B
Rust
13 lines
264 B
Rust
|
|
//! Rollout module: persistence and discovery of session rollout files.
|
||
|
|
|
||
|
|
pub(crate) const SESSIONS_SUBDIR: &str = "sessions";
|
||
|
|
|
||
|
|
pub mod list;
|
||
|
|
pub mod recorder;
|
||
|
|
|
||
|
|
pub use recorder::RolloutRecorder;
|
||
|
|
pub use recorder::SessionStateSnapshot;
|
||
|
|
|
||
|
|
#[cfg(test)]
|
||
|
|
pub mod tests;
|