package main import ( ) type IStore interface { Set(key string, bytess []byte) Remove(key string) All()map[string][]byte }