go-zero/zrpc/internal/chainserverinterceptors.go
2020-11-11 17:20:56 +08:00

12 lines
359 B
Go

package internal
import "google.golang.org/grpc"
func WithStreamServerInterceptors(interceptors ...grpc.StreamServerInterceptor) grpc.ServerOption {
return grpc.ChainStreamInterceptor(interceptors...)
}
func WithUnaryServerInterceptors(interceptors ...grpc.UnaryServerInterceptor) grpc.ServerOption {
return grpc.ChainUnaryInterceptor(interceptors...)
}