export interface Downtime {
    duration: number;
    ended_at: string;
    error: string;
    started_at: string;
}
