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