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