mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-23 01:05:27 +00:00
Properly resolve import issues
This commit is contained in:
@@ -9,7 +9,7 @@ export async function fireHealthCheckHealthyAlert(
|
||||
return;
|
||||
}
|
||||
|
||||
export async function fireHealthCheckUnealthyAlert(
|
||||
export async function fireHealthCheckUnhealthyAlert(
|
||||
orgId: string,
|
||||
healthCheckId: number,
|
||||
healthCheckName?: string,
|
||||
|
||||
20
server/lib/alerts/events/resourceEvents.ts
Normal file
20
server/lib/alerts/events/resourceEvents.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
export async function fireResourceHealthyAlert(
|
||||
orgId: string,
|
||||
resourceId: number,
|
||||
resourceName?: string | null,
|
||||
extra?: Record<string, unknown>
|
||||
): Promise<void> {}
|
||||
|
||||
export async function fireResourceUnhealthyAlert(
|
||||
orgId: string,
|
||||
resourceId: number,
|
||||
resourceName?: string | null,
|
||||
extra?: Record<string, unknown>
|
||||
): Promise<void> {}
|
||||
|
||||
export async function fireResourceToggleAlert(
|
||||
orgId: string,
|
||||
resourceId: number,
|
||||
resourceName?: string | null,
|
||||
extra?: Record<string, unknown>
|
||||
): Promise<void> {}
|
||||
Reference in New Issue
Block a user