@xmt/server-framework
Version:
Backend Server Framework of XmT Inc.
25 lines • 888 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const index_1 = require("../index");
exports.article = new index_1.Router();
exports.article.xmt_get(function user_GET_1(request, response, next) {
console.log("article GET method 1");
return next();
});
exports.article.xmt_common(function user_COMMON_1(request, response, next) {
console.log("article COMMON task 1");
next();
});
exports.article.xmt_get(function user_GET_2(request, response, next) {
console.log("article GET method 2");
return next();
});
exports.article.xmt_all(function user_ALL_1(request, response, next) {
console.log("article ALL method 1");
return next();
});
exports.article.xmt_common(function user_COMMON_2(request, response, next) {
console.log("article COMMON task 2");
next();
});
//# sourceMappingURL=article.js.map