Skip to main content

max / makenotwork

454 B · 22 lines History Blame Raw
1 //! SyncKit: device registration, change log, blob storage, and encryption key
2 //! management.
3 //!
4 //! Split by domain into submodules; all functions are re-exported flat so
5 //! call sites keep using `db::synckit::<fn_name>(...)`.
6
7 mod apps;
8 mod blobs;
9 mod devices;
10 mod keys;
11 mod log;
12 mod rotation;
13 mod subscriptions;
14
15 pub use apps::*;
16 pub use blobs::*;
17 pub use devices::*;
18 pub use keys::*;
19 pub use log::*;
20 pub use rotation::*;
21 pub use subscriptions::*;
22