@deepkit/framework
Version:
44 lines • 2.1 kB
JavaScript
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.DebugRouterController = void 0;
/*@ts-ignore*/
const { __ΩCommand } = require('@deepkit/app');
/*
* Deepkit Framework
* Copyright (C) 2021 Deepkit UG, Marc J. Schmidt
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the MIT License.
*
* You should have received a copy of the MIT License along with this program.
*/
const app_1 = require("@deepkit/app");
const http_1 = require("@deepkit/http");
/**
* @description Prints debugging information about the router.
*/
let DebugRouterController = class DebugRouterController {
constructor(router) {
this.router = router;
}
async execute() {
this.router.resolve('GET', '/');
console.log(this.router.fn.toString());
}
};
exports.DebugRouterController = DebugRouterController;
DebugRouterController.__type = [() => http_1.HttpRouter, 'router', 'constructor', 'execute', () => __ΩCommand, 'DebugRouterController', 'Prints debugging information about the router.', 'PP7!2"<"0#P$`0$5n%x"w&?\''];
exports.DebugRouterController = DebugRouterController = __decorate([
app_1.cli.controller('debug:router'),
__metadata("design:paramtypes", [http_1.HttpRouter])
], DebugRouterController);
//# sourceMappingURL=debug-router.js.map
;