7 lines
95 B
Go
7 lines
95 B
Go
package lib
|
|
|
|
type IStore interface {
|
|
Store(key string, data []byte)
|
|
Get(key string) []byte
|
|
}
|