fix golint issues in zrpc (#531)
This commit is contained in:
@@ -2,10 +2,12 @@ package internal
|
||||
|
||||
import "google.golang.org/grpc"
|
||||
|
||||
// WithStreamServerInterceptors uses given server stream interceptors.
|
||||
func WithStreamServerInterceptors(interceptors ...grpc.StreamServerInterceptor) grpc.ServerOption {
|
||||
return grpc.ChainStreamInterceptor(interceptors...)
|
||||
}
|
||||
|
||||
// WithUnaryServerInterceptors uses given server unary interceptors.
|
||||
func WithUnaryServerInterceptors(interceptors ...grpc.UnaryServerInterceptor) grpc.ServerOption {
|
||||
return grpc.ChainUnaryInterceptor(interceptors...)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user