kong-sdk
Version:
The open source Kong SDK built by VEED
14 lines (13 loc) • 416 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Protocol = void 0;
var Protocol;
(function (Protocol) {
Protocol["GRPC"] = "grpc";
Protocol["GRPCS"] = "grpcs";
Protocol["HTTP"] = "http";
Protocol["HTTPS"] = "https";
Protocol["TCP"] = "tcp";
Protocol["TLS"] = "tls";
Protocol["UDP"] = "udp";
})(Protocol = exports.Protocol || (exports.Protocol = {}));
;