gproxy-transform 3.0.0-alpha.0

GPROXY v3 pairwise protocol transforms
Documentation
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())
}