Skip to main content

aster/rewind/
mod.rs

1//! Rewind 功能模块
2//!
3//! 提供对话和文件状态的回退功能,支持:
4//! - 文件历史追踪和快照
5//! - 对话状态回退
6//! - 全局实例管理
7//! - 完整的单元测试覆盖
8
9mod file_history;
10mod manager;
11
12pub use file_history::{FileBackup, FileHistoryManager, FileSnapshot, RewindResult};
13pub use manager::{
14    cleanup_all_rewind_managers,
15    cleanup_rewind_manager,
16    // 全局实例管理
17    get_rewind_manager,
18    ConversationRewindResult,
19    RewindManager,
20    RewindOperationResult,
21    RewindOption,
22    RewindPreview,
23    RewindableMessage,
24    SnapshotDetails,
25};