diff --git a/crates/lune-std-net/src/shared/response.rs b/crates/lune-std-net/src/shared/response.rs index 5efc8c8..d1256ac 100644 --- a/crates/lune-std-net/src/shared/response.rs +++ b/crates/lune-std-net/src/shared/response.rs @@ -14,8 +14,8 @@ use crate::shared::headers::header_map_to_table; pub struct Response { // NOTE: We use Bytes instead of Full to avoid // needing async when getting a reference to the body - inner: HyperResponse, - decompressed: bool, + pub(crate) inner: HyperResponse, + pub(crate) decompressed: bool, } impl Response {