"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const http_1 = require("../base/http"); class GetIndex extends http_1.Route { constructor() { super(...arguments); this.order = 0; this.method = http_1.HttpMethod.GET; this.route = '/'; this.action = (req, res) => { res.status(http_1.StatusCodes.OK).send('org.crazydoctor.expressts server sample page'); }; } } exports.default = GetIndex; //# sourceMappingURL=GetIndex.js.map