Skip to main content

sqry_daemon/ipc/
framing.rs

1//! Re-exports from [`sqry_daemon_protocol::framing`].
2//!
3//! Phase 8c U1 extracted the framing codec into the
4//! `sqry-daemon-protocol` leaf crate. Keeping this module as a thin
5//! re-export shim lets every Phase 8a/8b call site inside `sqry-daemon`
6//! (`ipc::framing::X`) continue to compile unchanged.
7
8pub use sqry_daemon_protocol::framing::{
9    FrameError, MAX_FRAME_BYTES, read_frame, read_frame_json, write_frame, write_frame_json,
10};