1 2 3 4 5 6 7 8 9 10 11 12 13
mod base64; mod digest; pub mod errors; pub use self::digest::*; pub mod body { use bytes::Bytes; use http_body_util::combinators::BoxBody; use crate::errors::DigestError; pub type Body = BoxBody<Bytes, DigestError>; }