indexbus_kit/msg/
mod.rs

1//! `indexbus-msg` envelope helpers.
2//!
3//! `indexbus-typed` is usually what you want for application messages, but having the envelope
4//! available is useful for debugging, custom codecs, and tooling.
5
6pub use indexbus_msg::flags;
7pub use indexbus_msg::{decode_header, encode_header_into, Error, Header, MAGIC, V1_HEADER_LEN};
8
9/// Re-exported curated prelude from `indexbus-msg`.
10pub mod prelude {
11    pub use indexbus_msg::prelude::*;
12}