A quick vibe-coded site to test response times of PLC.directory mirrors (over 3 attempts)
at main 309 B view raw
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 implementation: string; 11 attempts: BenchmarkAttempt[]; 12 avgResponseTime: number; 13 status: "success" | "error"; 14}