This commit is contained in:
Owen
2026-04-15 14:26:34 -07:00
parent 7d50703c26
commit cf741a6f87
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// stub
export async function fireSiteOnlineAlert(
orgId: string,
siteId: number,
siteName?: string,
extra?: Record<string, unknown>
): Promise<void> {
return;
}
export async function fireSiteOfflineAlert(
orgId: string,
siteId: number,
siteName?: string,
extra?: Record<string, unknown>
): Promise<void> {
return;
}