BinaryStore handles storage of binary data in a JSON envelope.
| 28 | |
| 29 | // BinaryStore handles storage of binary data in a JSON envelope. |
| 30 | type BinaryStore struct { |
| 31 | store Store |
| 32 | config config.JSONBinaryStoreConfig |
| 33 | } |
| 34 | |
| 35 | // The binary store uses a single key ("data") to store everything. |
| 36 | func (store *BinaryStore) IsSingleValueStore() bool { |
nothing calls this directly
no outgoing calls
no test coverage detected