| 99 | } |
| 100 | |
| 101 | type txnPrefix struct { |
| 102 | clientv3.Txn |
| 103 | kv *kvPrefix |
| 104 | } |
| 105 | |
| 106 | func (kv *kvPrefix) Txn(ctx context.Context) clientv3.Txn { |
| 107 | return &txnPrefix{kv.KV.Txn(ctx), kv} |
nothing calls this directly
no outgoing calls
no test coverage detected