Deployment
Automated deployment update
4b1daed
Raw
History Blame Contribute Delete
258 Bytes
//! Binary Protocol Module
//!
//! Implements the custom binary wire protocol for high-performance memory operations.
mod wire;
mod codec;
pub use wire::{Frame, FrameHeader, MessageType, MAGIC_HEADER, PROTOCOL_VERSION};
pub use codec::MemoryProtocolCodec;