aquatic http protocol: remove unimplemented Response::from_bytes fn

This commit is contained in:
Joakim Frostegård 2020-07-21 17:21:32 +02:00
parent c1b2a30803
commit b01226fddc

View file

@ -187,10 +187,6 @@ impl Response {
Response::Scrape(r) => r.to_bytes(), Response::Scrape(r) => r.to_bytes(),
} }
} }
pub fn from_bytes(bytes: &[u8]) -> anyhow::Result<Self> {
unimplemented!()
}
} }