···11+// flushes all pds endpoints
22+33+const unique: Array<string> = []
44+55+export function process({ op }: { op: any }) {
66+77+ const endpoint = op.operation.services?.atproto_pds?.endpoint
88+ if (!unique.includes(endpoint)) {
99+ console.log(endpoint)
1010+ unique.push(endpoint)
1111+ }
1212+}
+1-1
src/cli.ts
···2233import { clone } from './cmds/clone';
44import { detect } from './cmds/detect';
55-import { process as processCmd } from './cmds/process';
55+import { processCmd } from './cmds/process';
66import { info } from './cmds/info';
77import { verify } from './cmds/verify';
88import { exportCmd } from './cmds/export';