Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 13 lines 361 B view raw
1export const maintenances = [ 2 { 3 id: 1, 4 title: "DB Migration", 5 message: 6 "We are currently performing a db migration on our system and will be down for a few hours.", 7 startDate: new Date("2025-04-01"), 8 endDate: new Date("2025-04-02"), 9 affected: ["OpenStatus API"], 10 }, 11]; 12 13export type Maintenance = (typeof maintenances)[number];