1234567891011121314151617 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.Route = void 0;
- const HttpHandler_1 = require("./HttpHandler");
- class Route extends HttpHandler_1.HttpHandler {
- get documentation() {
- return '';
- }
- getMethod() {
- return this.method;
- }
- getDocumentation() {
- return this.documentation;
- }
- }
- exports.Route = Route;
- //# sourceMappingURL=Route.js.map
|