Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 376 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 376 Bytes

Jgrpc-pgv-interceptor

gRpc-Gateway PGV 中间件

Usage

	grpcServer := grpc.NewServer(
		grpc.ChainStreamInterceptor(
			// otel 链路追踪
			otelgrpc.StreamServerInterceptor(),
		),
		grpc.ChainUnaryInterceptor(
			// otel 链路追踪
			otelgrpc.UnaryServerInterceptor(),
			// PGV 中间件
			Jgrpc_pgv_interceptor.ValidationUnaryInterceptor,
		),
	)