micro/store/item.go

7 lines
69 B
Go
Raw Normal View History

2015-01-14 02:31:27 +03:00
package store
type Item interface {
Key() string
Value() []byte
}