You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
263 B

2 years ago
var router = require('koa-router')();
router.prefix('/users');
router.get('/', function *(next) {
this.body = 'this is a users response!';
});
router.get('/bar', function *(next) {
this.body = 'this is a users/bar response!';
});
module.exports = router;