//! Macros for compressing data sent by the `salvo` server.
/// Brotli compression salvo's hoop.
///
/// Usage:
///
/// ```rust
/// use salvo::Router;
/// use cc_utils::brotli;
///
/// let router = Router::with_hoop(brotli!()).path("new-compressed-json").get(hello_compressed_json);
/// ```