You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
359 B
Go
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...)
|
|
}
|