mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-15 22:36:37 +00:00
20 lines
405 B
TypeScript
20 lines
405 B
TypeScript
// stub
|
|
|
|
export async function fireHealthCheckHealthyAlert(
|
|
orgId: string,
|
|
healthCheckId: number,
|
|
healthCheckName?: string,
|
|
extra?: Record<string, unknown>
|
|
): Promise<void> {
|
|
return;
|
|
}
|
|
|
|
export async function fireHealthCheckNotHealthyAlert(
|
|
orgId: string,
|
|
healthCheckId: number,
|
|
healthCheckName?: string,
|
|
extra?: Record<string, unknown>
|
|
): Promise<void> {
|
|
return;
|
|
}
|