//! Example `MySQL` framing codec wired into a `WireframeApp`.
//!
//! `MySQL` packets use a 4-byte header: 3-byte little-endian payload length and
//! a 1-byte sequence number. The codec implementation lives in
//! `wireframe::codec::examples` so tests can exercise it directly.
use io;
use ;