1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-23 17:53:05 +02:00
go-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
}