UNPKG

@mvx/mvc

Version:

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

25 lines (23 loc) 737 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MvcApp = void 0; const tslib_1 = require("tslib"); const decorators_1 = require("./decorators"); const DefaultMvcMiddlewares_1 = require("./DefaultMvcMiddlewares"); const MvcServer_1 = require("./MvcServer"); let MvcApp = class MvcApp { constructor() { } static ρAnn() { 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); exports.MvcApp = MvcApp; //# sourceMappingURL=sourcemaps/MvcApp.js.map