fix(build): allow services to be named Service (#709)

Fixes https://github.com/hyperium/tonic/issues/676
This commit is contained in:
David Pedersen
2021-07-12 16:47:45 +02:00
committed by GitHub
parent 167e8cb5b2
commit 380d81dd86
7 changed files with 37 additions and 3 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ pub fn generate<T: Service>(
#configure_compression_methods
}
impl<T, B> Service<http::Request<B>> for #server_service<T>
impl<T, B> tonic::codegen::Service<http::Request<B>> for #server_service<T>
where
T: #server_trait,
B: Body + Send + Sync + 'static,