'use strict'; /** * @param {Egg.Application} app - egg application */ module.exports = app => { const { router, controller } = app; router.get('/', controller.home.index); router.resources('tasks', '/api/tasks', controller.tasks); // index、create、show、destroy };