mirror of
https://github.com/linka-cloud/grpc.git
synced 2024-11-05 10:46:25 +00:00
33 lines
813 B
Go
33 lines
813 B
Go
package recovery
|
|
|
|
import (
|
|
grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
|
|
"google.golang.org/grpc"
|
|
|
|
"go.linka.cloud/grpc/interceptors"
|
|
)
|
|
|
|
func NewInterceptors(opts ...grpc_recovery.Option) interceptors.ServerInterceptors {
|
|
return &recovery{opts: opts}
|
|
}
|
|
|
|
type recovery struct {
|
|
opts []grpc_recovery.Option
|
|
}
|
|
|
|
func (i *recovery) UnaryServerInterceptor() grpc.UnaryServerInterceptor {
|
|
return grpc_recovery.UnaryServerInterceptor(i.opts...)
|
|
}
|
|
|
|
func (i *recovery) StreamServerInterceptor() grpc.StreamServerInterceptor {
|
|
return grpc_recovery.StreamServerInterceptor(i.opts...)
|
|
}
|
|
|
|
func (i *recovery) UnaryClientInterceptor() grpc.UnaryClientInterceptor {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (i *recovery) StreamClientInterceptor() grpc.StreamClientInterceptor {
|
|
panic("not implemented")
|
|
}
|