Files
opencloud/pkg/thumbnail/storage/storage.go
David Christofas e9c2de26a5 rename package
2020-03-26 09:49:37 +01:00

18 lines
415 B
Go

package storage
import "github.com/owncloud/ocis-thumbnails/pkg/thumbnail/resolution"
// Request combines different attributes needed for storage operations.
type Request struct {
ETag string
Types []string
Resolution resolution.Resolution
}
// Storage defines the interface for a thumbnail store.
type Storage interface {
Get(string) []byte
Set(string, []byte) error
BuildKey(Request) string
}