@deepkit/framework
Version:
41 lines • 1.91 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);
};
/*@ts-ignore*/
import { __ΩCommand } from '@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.
*/
import { cli } from '@deepkit/app';
import { HttpRouter } from '@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());
}
};
DebugRouterController.__type = [() => HttpRouter, 'router', 'constructor', 'execute', () => __ΩCommand, 'DebugRouterController', 'Prints debugging information about the router.', 'PP7!2"<"0#P$`0$5n%x"w&?\''];
DebugRouterController = __decorate([
cli.controller('debug:router'),
__metadata("design:paramtypes", [HttpRouter])
], DebugRouterController);
export { DebugRouterController };
//# sourceMappingURL=debug-router.js.map