diff --git a/aquatic_http_protocol/src/response.rs b/aquatic_http_protocol/src/response.rs index baf7057..f7576f9 100644 --- a/aquatic_http_protocol/src/response.rs +++ b/aquatic_http_protocol/src/response.rs @@ -189,9 +189,7 @@ impl Response { } pub fn from_bytes(bytes: &[u8]) -> anyhow::Result { - Ok(Self::Failure(FailureResponse { - failure_reason: "fake response".to_string() - })) + unimplemented!() } }