please upgrade the proto package KV Store is just a series of key-value pairs.
| 28 | |
| 29 | // KV Store is just a series of key-value pairs. |
| 30 | type KeyValueStore struct { |
| 31 | Pairs []*KeyValuePair `protobuf:"bytes,1,rep,name=pairs,proto3" json:"pairs,omitempty"` |
| 32 | } |
| 33 | |
| 34 | func (m *KeyValueStore) Reset() { *m = KeyValueStore{} } |
| 35 | func (*KeyValueStore) ProtoMessage() {} |
nothing calls this directly
no outgoing calls
no test coverage detected