feat: 开启定时任务 & 关闭gitlab事件
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 1m8s

This commit is contained in:
zhaoyingbo 2024-08-09 02:51:36 +00:00
parent b398dba6c1
commit fc4964a1b1

View File

@ -1,11 +1,11 @@
import { manageCIMonitorReq } from "./routes/ci"
import { manageGitlabEventReq } from "./routes/event"
// import initSchedule from "./schedule"
// import { manageGitlabEventReq } from "./routes/event"
import initSchedule from "./schedule"
import netTool from "./service/netTool"
import { makeCheckPathTool } from "./utils/pathTools"
// 启动定时任务
// initSchedule()
initSchedule()
const PREFIX = "/gitlab_monitor"
@ -19,7 +19,7 @@ const server = Bun.serve({
// CI 监控
if (exactCheck("/ci")) return manageCIMonitorReq(req)
// Gitlab 事件
if (exactCheck("/event")) return manageGitlabEventReq(req)
// if (exactCheck("/event")) return manageGitlabEventReq(req)
// 其他
return netTool.ok("hello, there is gitlab monitor, glade to serve you!")
} catch (error: any) {