UNPKG

onenote

Version:
14 lines 240 B
module.exports = app => { app.get('/', ctx => { return 'haha'; }); app.get('/guid', ctx => { return app.service.guid(); }); app.get('/json', ctx => { return app.model; }); app.get('/redis', ctx => { return app.redis(); }); }