A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
1export interface BenchmarkResult { 2 mirrorName: string; 3 mirrorUrl: string; 4 responseTime: number; 5 status: "success" | "error"; 6 statusCode?: number; 7 error?: string; 8 data?: any; 9}