chore: Fix clippy lint (#1181)

This commit is contained in:
tottoto
2022-12-14 01:29:29 +09:00
committed by GitHub
parent 3076e8251e
commit 2dd09c02bd
23 changed files with 98 additions and 62 deletions
+6
View File
@@ -16,6 +16,12 @@ impl GrpcWebLayer {
}
}
impl Default for GrpcWebLayer {
fn default() -> Self {
Self::new()
}
}
impl<S> Layer<S> for GrpcWebLayer
where
S: Service<http::Request<hyper::Body>, Response = http::Response<BoxBody>>,