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