export const name = "DRC"; export const url = "https://wbte.drcedirect.com/PA/portals/pa"; // status.drcedirect.com is a JS-rendered Angular app with no accessible API. // Synthetic check against the PA INSIGHT portal instead. const PROBE_URL = "https://wbte.drcedirect.com/PA/portals/pa"; export async function checkStatus() { const res = await fetch(PROBE_URL, { method: "HEAD" }); return { name, status: "operational", message: `PA INSIGHT portal responding (HTTP ${res.status}).`, lastUpdated: new Date().toISOString(), }; }