删除 GitHub Actions 设置邮件接收步骤

This commit is contained in:
eoao
2026-01-24 00:06:00 +08:00
parent 1d4979bc43
commit bfb896bae6
4 changed files with 35 additions and 164 deletions

View File

@@ -1,11 +1,6 @@
import app from '../hono/hono';
import { dbInit } from '../init/init';
import { initForward } from "../init/forward";
app.get('/init/:secret', (c) => {
return dbInit.init(c);
})
app.post('/initForward', async (c) => {
return initForward(c, await c.req.json());
})