1//! Rama services that operate directly on [`crate::stream::Stream`] types. 2//! 3//! Examples are services that can operate directly on a `TCP`, `TLS` or `UDP` stream. 4 5mod echo; 6#[doc(inline)] 7pub use echo::EchoService;