UNPKG

@xmt/server-framework

Version:

Backend Server Framework of XmT Inc.

29 lines 1.07 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const index_1 = require("../index"); exports.profile = new index_1.Router(); exports.profile.xmt_common(function profile_Common_1(request, response, next) { console.log("profile Common method 1"); return next(); }); exports.profile.xmt_get(function profile_GET_1(request, response, next) { console.log("profile GET method 1"); return next(); }); exports.profile.xmt_common(function profile_Common_2(request, response, next) { console.log("profile Common method 1"); return next(); }); exports.profile.xmt_get(function profile_GET_2(request, response, next) { console.log("profile GET method 2"); return next(); }); exports.profile.xmt_post(function profile_POST_1(request, response, next) { console.log("profile POST method 1"); return next(); }); exports.profile.xmt_post(function profile_POST_2(request, response, next) { console.log("profile POST method 2"); return next(); }); //# sourceMappingURL=profile.js.map