micro/store/item.go
2015-01-13 23:31:27 +00:00

7 lines
69 B
Go

package store
type Item interface {
Key() string
Value() []byte
}