UNPKG

ec-router

Version:

一个koa2自动路由中间件,直接根椐请求方法及路径路由到指定的controller。无需人工编写路由表或映射

11 lines (10 loc) 256 B
module.exports = { get : async (ctx) => { ctx.body = "hello, from [/res/get] or [GET /res]" }, lst : async (ctx) => { }, _any: async (ctx) => { //match any other,if need auto RESTful,reomve this action } }