feat(cloud): 实现微信云函数 - 订阅管理与每日运势推送

- subscribe: 用户订阅/取消订阅/查询订阅状态
- daily-push: 定时查询订阅用户、生成运势、发送订阅消息
- push-test: 推送调试云函数
- 定时触发器配置,每日 7:00/12:00/18:00 推送
This commit is contained in:
2026-08-13 08:06:10 +08:00
parent e6488cdab9
commit bd4a8aa358
10 changed files with 520 additions and 0 deletions
@@ -0,0 +1,9 @@
{
"triggers": [
{
"name": "dailyPushTimer",
"type": "timer",
"config": "0 * * * * * *"
}
]
}