CommonLibrary/Synchronization/mod.rs
1//! # Synchronization Service
2//!
3//! This module defines the abstract contract for the User Data Synchronization
4//! service. This service is responsible for synchronizing settings, snippets,
5
6//! UI state, and other user data across different instances of the application.
7
8// --- Trait Definition ---
9pub mod SynchronizationProvider;