mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-23 17:53:05 +02:00
7 lines
69 B
Go
7 lines
69 B
Go
package store
|
|
|
|
type Item interface {
|
|
Key() string
|
|
Value() []byte
|
|
}
|