1export function detect({ op }) { 2 const labels = []; 3 4 if (op.did.startsWith('did:plc:aa')) { 5 labels.push('test') 6 } 7 8 console.log(op.operation.sig) 9 10 return labels; 11}