update api

This commit is contained in:
Jay
2017-06-01 18:09:25 +08:00
parent b1f3ea207b
commit e25a4a2acf
8 changed files with 232 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
const Router = require('koa-router');
const router = new Router();
router.get('/', (c, n) => {
c.body = "API Root";
})
module.exports = router;