Skip to main content

max / makenotwork

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