node 服务
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.
 

11 lines
299 B

const Router = require('koa-router');
const router = new Router({
prefix: '/auto' //统一加个前缀
});
const materialAutoUpdate = require('../../modules/auto/MaterialAutoUpdate');
// 推送素材更新
router.get('/pushMaterial',materialAutoUpdate.pushMaterial);
module.exports = router;