storage-upload/api/router.js

10 lines
157 B
JavaScript
Raw Normal View History

2017-12-09 21:51:18 +00:00
import Router from 'koa-router'
import * as test from './test/routes'
const router = new Router()
2017-12-09 22:55:25 +00:00
router.get('/', test.testStatic)
2017-12-09 21:51:18 +00:00
export default router