9 lines
209 B
TypeScript
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 "";
|
|
}
|
|
};
|