type google.golang.org/grpc.UnaryHandler

5 uses

	google.golang.org/grpc (current package)
		interceptor.go#L81: type UnaryHandler func(ctx context.Context, req any) (any, error)
		interceptor.go#L87: type UnaryServerInterceptor func(ctx context.Context, req any, info *UnaryServerInfo, handler UnaryHandler) (resp any, err error)
		server.go#L1233: 	return func(ctx context.Context, req any, info *UnaryServerInfo, handler UnaryHandler) (any, error) {
		server.go#L1238: func getChainUnaryHandler(interceptors []UnaryServerInterceptor, curr int, info *UnaryServerInfo, finalHandler UnaryHandler) UnaryHandler {