hashiverse_lib/protocol/payload/mod.rs
1//! # RPC payload variants
2//!
3//! Every request and response type on the wire, plus the `u16` discriminators that
4//! route them to the right handler. Post-submission carries enough special-case
5//! envelope logic (header compression, body encryption, signing-authority choice)
6//! that it has been factored out into its own module.
7
8pub mod payload;
9pub mod submit_post_v1;
10