hashiverse_lib/client/mod.rs
1//! # Client-side protocol participation
2//!
3//! Everything a user-facing client needs to read, write, and synchronise with a
4//! hashiverse network. [`hashiverse_client::HashiverseClient`] is the façade tying
5//! the rest of the submodules together — peer tracking, post-bundle fetching and
6//! healing, timelines, per-account signing identity, profile management, and the
7//! pluggable persistence layer.
8
9pub mod args;
10pub mod caching;
11pub mod hashiverse_client;
12pub mod peer_tracker;
13pub mod client_storage;
14pub mod key_locker;
15pub mod post_bundle;
16pub mod timeline;
17pub mod meta_post;