File size: 258 Bytes
4b1daed
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
//! 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;