forked from TrueCloudLab/neoneo-go
72726d46d3
MemCachedStore.Seek now sorts results, so its callers may omit sorting.
10 lines
232 B
Go
10 lines
232 B
Go
package state
|
|
|
|
// StorageItem is the value to be stored with read-only flag.
|
|
type StorageItem []byte
|
|
|
|
// StorageItemWithKey is a storage item with corresponding key.
|
|
type StorageItemWithKey struct {
|
|
Key []byte
|
|
Item StorageItem
|
|
}
|