hashiverse_server_lib/server/mod.rs
1//! # Server orchestration, routing, handlers, and caches
2//!
3//! The top-level `HashiverseServer` struct that owns one node's identity, DHT,
4//! caches, and inbound-request loop, together with the supporting pieces: command
5//! line parsing, operator passphrase resolution, the in-RAM bundle/feedback read
6//! caches, the Kademlia routing table, and the handler dispatch that routes each
7//! decoded RPC to its per-op implementation.
8
9pub mod kademlia;
10pub mod handlers;
11pub mod hashiverse_server;
12pub mod passphrase;
13pub mod post_bundle_caching_shared;
14pub mod post_bundle_caching;
15pub mod post_bundle_feedback_caching;
16pub mod args;