feat(backend): removed unused ObjectStorage method from interface definition

This commit is contained in:
Alexander 2023-10-26 14:37:23 +02:00
parent 69d0ab5a4e
commit 3a2ed49385

View file

@ -16,7 +16,6 @@ const (
type ObjectStorage interface {
Upload(reader io.Reader, key string, contentType string, compression CompressionType) error
Get(key string) (io.ReadCloser, error)
GetAll(key string) ([]io.ReadCloser, error)
Exists(key string) bool
GetCreationTime(key string) *time.Time
}