mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
14 lines
499 B
Go
14 lines
499 B
Go
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...)
|
|
}
|