7 lines
69 B
Go
7 lines
69 B
Go
|
package store
|
||
|
|
||
|
type Item interface {
|
||
|
Key() string
|
||
|
Value() []byte
|
||
|
}
|