type Getter interface {
// GetObject retrieves the content of a specific object in file storage bucket at path. GetObject(ctx context.Context, path string) (Object, error)
}
type Lister interface {
// ListObjects list all objects in file storage bucket at prefix.// The returned objects only contain the path to the object without object content.
ListObjects(ctx context.Context, prefix string) ([]Object, error)
}