type Store interface {
// GetObject retrieves a shared object from the store. GetObject(ctx context.Context, appID, pluginName, key string) ([]byte, error)
// PutObject stores a shared object to the store. PutObject(ctx context.Context, appID, pluginName, key string, data []byte) error
}