feat(cms): implement RewindBlobRepository for managing binary blobs

This commit is contained in:
asepharyana
2026-07-17 09:08:41 +07:00
parent b272858edb
commit 22dd6fdda7
5 changed files with 205 additions and 0 deletions
@@ -11,10 +11,12 @@ pub mod app_config_repo;
pub mod conversation_repo;
pub mod edit_log_repo;
pub mod memory_repo;
pub mod rewind_blob_repo;
pub mod settings_repo;
pub use app_config_repo::JsonAppConfigRepository;
pub use conversation_repo::JsonConversationRepository;
pub use edit_log_repo::JsonlEditLogRepository;
pub use memory_repo::MarkdownMemoryRepository;
pub use rewind_blob_repo::FileRewindBlobRepository;
pub use settings_repo::JsonSettingsRepository;