egg_server/service/index.ts
zhaoyingbo 865308ee31
All checks were successful
Egg CI/CD / build-image (push) Successful in 8m16s
Egg CI/CD / deploy (push) Successful in 7m47s
feat: Update code formatting and fix minor issues
2024-05-05 02:34:16 +00:00

9 lines
209 B
TypeScript

export const fetchCIMonitor = async () => {
try {
const res = await fetch("https://ci-monitor.xiaomiwh.cn/ci");
return ((await res.json()) as string) || "";
} catch {
return "";
}
};