ts-api-core
Version:
Nodejs api framework core
17 lines • 747 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseRouteGraphController = void 0;
const base_route_graph_wrapper_1 = require("../wrapper/base.route.graph.wrapper");
const base_route_raw_controller_1 = require("./base.route.raw.controller");
/** GraphWrapper 类型请求 Controller */
class BaseRouteGraphController extends base_route_raw_controller_1.BaseRouteRawController {
canExecuteWrapper(context) {
return true;
}
/** 获取 Wrapper */
getWrapper(context) {
return new base_route_graph_wrapper_1.BaseRouteGraphWrapper(context);
}
}
exports.BaseRouteGraphController = BaseRouteGraphController;
//# sourceMappingURL=base.route.graph.controller.js.map