* change grpc interceptor to chain interceptor * change server rpc interceptors, del testing code
13 lines
363 B
Go
13 lines
363 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...)
|
|
} |