1 2 3 4 5 6 7 8
use bytes::Bytes; use crate::TransformError; pub(crate) fn transform(body: Bytes) -> Result<Bytes, TransformError> { let _ = body; Ok(Bytes::new()) }