PutRequest represents a request to the key-value store for the value associated with a particular key
| 143 | // PutRequest represents a request to the key-value store for the |
| 144 | // value associated with a particular key |
| 145 | type PutRequest struct { |
| 146 | state protoimpl.MessageState |
| 147 | sizeCache protoimpl.SizeCache |
| 148 | unknownFields protoimpl.UnknownFields |
| 149 | |
| 150 | Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` |
| 151 | Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` |
| 152 | } |
| 153 | |
| 154 | func (x *PutRequest) Reset() { |
| 155 | *x = PutRequest{} |
nothing calls this directly
no outgoing calls
no test coverage detected