export interface HealthStats {
    status: string;
    uptime: number;
    cpu: number;
    mem: number;
    temp: number;
}
