//! Web response formatter.
//!
//! Web passes OutgoingMessage content through to route handlers as-is.
//! Formatting is the route handler's responsibility (ChatResponse JSON,
//! WebSocket JSON chunks, etc.).
use ChannelFormatter;
use OutgoingMessage;
/// Web channel formatter — identity pass-through.
///
/// The web channel uses OutgoingMessage directly (JSON serialized by route handlers).
/// This formatter exists to satisfy the [`ChannelFormatter`] trait but performs no
/// transformation.
;