Files
2026-07-13 12:32:21 +08:00

22 lines
429 B
Lua

local typedefs = require "kong.db.schema.typedefs"
return {
name = "grpc-gateway",
fields = {
{ protocols = typedefs.protocols },
{ config = {
type = "record",
fields = {
{
proto = {
description = "Describes the gRPC types and methods.",
type = "string",
required = false,
default = nil,
},
},
},
}, },
},
}