storage-upload/api/router.js

10 lines
165 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()
router.get('/api/test', test.testStatic)
export default router