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//!
4//! Copyright (c) systemprompt.io — Business Source License 1.1.
5//! See <https://systemprompt.io> for licensing details.
6
7mod local_sync;
8
9pub use local_sync::{
10    ContentDiffItem, ContentDiffResult, DiffStatus, DiskContent, LocalSyncDirection,
11    LocalSyncResult,
12};