lb_rs/service/mod.rs
1//! Members of this module comprise the endpoints exposed by the lb crate
2//! Members of this module are generally handling concurrency primitives, caches, and pay special
3//! attention to the needs of people consuming lb - UI developers and integration engineers.
4//! On locking: in general, it is okay to hold a lock for reading a file, but not for multiple files or network I/O
5
6pub mod account;
7pub mod activity;
8pub mod admin;
9pub mod billing;
10pub mod debug;
11pub mod documents;
12pub mod events;
13pub mod file;
14pub mod import_export;
15pub mod integrity;
16pub mod keychain;
17pub mod logging;
18pub mod path;
19pub mod share;
20pub mod sync;
21pub mod usage;