Common/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#![allow(non_snake_case, non_camel_case_types)]
9
10// --- Trait Definition ---
11pub mod SynchronizationProvider;