treewide: better cross-device sync capabilities; in-database storage
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Id99798df6f7e4470caae8a193c2654aa6a6a6964
This commit is contained in:
parent
5521488a93
commit
f34c78b238
41 changed files with 8781 additions and 138 deletions
14
crates/pinakes-core/src/sync/mod.rs
Normal file
14
crates/pinakes-core/src/sync/mod.rs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
//! Cross-device synchronization module.
|
||||
//!
|
||||
//! Provides device registration, change tracking, and conflict resolution
|
||||
//! for syncing media libraries across multiple devices.
|
||||
|
||||
mod chunked;
|
||||
mod conflict;
|
||||
mod models;
|
||||
mod protocol;
|
||||
|
||||
pub use chunked::*;
|
||||
pub use conflict::*;
|
||||
pub use models::*;
|
||||
pub use protocol::*;
|
||||
Loading…
Add table
Add a link
Reference in a new issue