Ai config

This commit is contained in:
董海洋
2026-05-26 13:37:55 +08:00
parent 55452a2d21
commit 0c7ed3498d
42 changed files with 1264 additions and 767 deletions
+8
View File
@@ -0,0 +1,8 @@
const Router = require('koa-router')
const router = new Router()
const { bindOpenId, notifyOrder } = require('../controllers/subscribe')
router.post('/bind-openid', bindOpenId)
router.post('/orders/notify', notifyOrder)
module.exports = router.routes()