Spaces:
Build error
Build error
| //! 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; | |