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