Files
services/routes/points-goods.js
T

14 lines
534 B
JavaScript
Raw Normal View History

2026-05-26 09:18:48 +08:00
const Router = require('koa-router')
const pointsGoodsController = require('../controllers/points-goods')
const router = new Router()
router.get('/', pointsGoodsController.getPointsGoods)
router.get('/:id', pointsGoodsController.getPointsGoodsById)
router.post('/', pointsGoodsController.createPointsGoods)
router.post('/exchange', pointsGoodsController.exchangePointsGoods)
router.put('/:id', pointsGoodsController.updatePointsGoods)
router.delete('/:id', pointsGoodsController.deletePointsGoods)
module.exports = router.routes()