package lib type IStore interface { Store(key string, data []byte) Get(key string) []byte }