1export interface Mirror { 2 url: string; 3} 4 5export const mirrors: Mirror[] = [ 6 { url: "https://plc.directory" }, 7 { url: "https://plc.bsky-mirror.dev" }, 8 { url: "https://plc.us-east.host.bsky.network" }, 9];