Skip to main content

systemprompt_sync/models/
mod.rs

1//! Plain-data structs describing local-sync diffs and on-disk
2//! representations of content.
3
4mod local_sync;
5
6pub use local_sync::{
7    ContentDiffItem, ContentDiffResult, DiffStatus, DiskContent, LocalSyncDirection,
8    LocalSyncResult,
9};