Initial LisgloSIPS V2 implementation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
export const API_PREFIX = '/api/v2';
|
||||
|
||||
export type HealthStatus = 'ok' | 'degraded' | 'down';
|
||||
|
||||
export interface HealthCheckResponse {
|
||||
status: HealthStatus;
|
||||
service: string;
|
||||
timestamp: string;
|
||||
checks: Record<string, HealthStatus>;
|
||||
}
|
||||
Reference in New Issue
Block a user