1// flushes all pds endpoints 2 3const unique: Array<string> = [] 4 5export function process({ op }: { op: any }) { 6 7 const endpoint = op.operation.services?.atproto_pds?.endpoint 8 if (!unique.includes(endpoint)) { 9 console.log(endpoint) 10 unique.push(endpoint) 11 } 12}