UNPKG

@mvx/mvc

Version:

@mvx/mvc is mvc framework on server, base on koa, @tsdi frameworks

26 lines (24 loc) 810 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MvcApp = void 0; var tslib_1 = require("tslib"); var decorators_1 = require("./decorators"); var DefaultMvcMiddlewares_1 = require("./DefaultMvcMiddlewares"); var MvcServer_1 = require("./MvcServer"); var MvcApp = /** @class */ (function () { function MvcApp() { } MvcAppAnn = function () { return { "name": "MvcApp", "params": {} }; }; MvcApp = tslib_1.__decorate([ decorators_1.MvcModule({ middlewares: DefaultMvcMiddlewares_1.DefaultMvcMiddlewares, bootstrap: MvcServer_1.MvcServer }), tslib_1.__metadata("design:paramtypes", []) ], MvcApp); return MvcApp; }()); exports.MvcApp = MvcApp; //# sourceMappingURL=sourcemaps/MvcApp.js.map