UNPKG

whistle.data-checker

Version:
10 lines (8 loc) 302 B
// const bodyParser = require('koa-bodyparser'); const getList = require('./cgi-bin/list'); const clearList = require('./cgi-bin/clear'); module.exports = (router) => { // router.all('/cgi-bin/**', bodyParser()); router.get('/cgi-bin/list', getList); router.get('/cgi-bin/clear', clearList); };