reest
Version:
A library inspired by NestJS's elegance, specifically designed for efficient serverless API development on AWS Lambda. It streamlines the creation of microservices with automated Swagger documentation and enhanced decorator-based middleware support, makin
12 lines • 449 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Controllers = void 0;
const Log_1 = require("../../utils/Log");
function Controllers(...controllers) {
return (target) => {
(0, Log_1.Log)(`App is initialized with ${controllers.length} controllers`);
Reflect.defineMetadata("Controllers", controllers, target);
};
}
exports.Controllers = Controllers;
//# sourceMappingURL=Controllers.js.map
;