Skip to main content

max / makenotwork

520 B · 26 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 groups;
11 mod keys;
12 mod log;
13 mod rotation;
14 mod security;
15 mod subscriptions;
16
17 pub use apps::*;
18 pub use blobs::*;
19 pub use devices::*;
20 pub use groups::*;
21 pub use keys::*;
22 pub use log::*;
23 pub use rotation::*;
24 pub use security::*;
25 pub use subscriptions::*;
26