feat: 添加路由前缀
Some checks failed
CI Monitor CI/CD / build-image (push) Successful in 31s
CI Monitor MIflow / build-image (push) Successful in 35s
CI Monitor CI/CD / deploy (push) Failing after 1m5s

This commit is contained in:
zhaoyingbo 2024-07-26 09:08:11 +00:00
parent dca8afc9cd
commit abd6bd83a0

View File

@ -10,12 +10,14 @@ const server = Bun.serve({
async fetch(req) {
try {
const url = new URL(req.url)
const prefix = "/gitlab"
// 根路由
if (url.pathname === "/") return netTool.ok("hello, glade to see you!")
if (url.pathname === `${prefix}/`)
return netTool.ok("hello, glade to see you!")
// CI 监控
if (url.pathname === "/ci") return manageCIMonitorReq(req)
if (url.pathname === `${prefix}/ci`) return manageCIMonitorReq(req)
// Gitlab 事件
if (url.pathname === "/event") return manageGitlabEventReq(req)
if (url.pathname === `${prefix}/event`) return manageGitlabEventReq(req)
// 其他
return netTool.ok("hello, glade to see you!")
} catch (error: any) {