"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getEndpointId = void 0; const ENDPOINT_ID_SEPARATOR = '-~_~-'; const getEndpointId = (endpoint) => { return `${endpoint.method.toUpperCase()}${ENDPOINT_ID_SEPARATOR}${endpoint.path}`; }; exports.getEndpointId = getEndpointId; //# sourceMappingURL=id.js.map