Versions in this module Expand all Collapse all v0 v0.0.0 Nov 11, 2023 Changes in this version + var ObjectDoesNotExistsError = echo.NewHTTPError(http.StatusNotFound, "Object Does Not Exists") + type I struct + Bucket stiface.BucketHandle + Client stiface.Client + Config config.Storage + func NewClient(conf config.Storage) (i I, err error) + func (i I) Add(key string, payload model.Payload, metadata *model.Metadata) (err error) + func (i I) Delete(key string) (err error) + func (i I) Exists(key string) (err error) + func (i I) ForceAdd(key string, payload model.Payload, metadata *model.Metadata) (err error) + func (i I) Get(key string) (payload model.Payload, err error) + func (i I) List(key string) (keys model.Keys, err error) + func (i I) Update(key string, payload model.Payload, metadata *model.Metadata) (err error)