home.js
312 Bytes
'use strict';
const Controller = require('egg').Controller;
// class HomeController extends Controller {
// async index() {
// const { ctx } = this;
// ctx.body = 'hi,egg';
// }
// }
exports.index = async () => {
const { ctx } = this;
ctx.body = 'hi,egg';
};
module.exports = HomeController;