1
0
Fork 0
mirror of https://github.com/Luzifer/cloudbox.git synced 2024-11-12 16:02:47 +00:00
cloudbox/providers/interface.go

31 lines
620 B
Go
Raw Normal View History

2019-06-16 00:05:06 +00:00
package providers
import (
"github.com/pkg/errors"
)
type Capability uint8
const (
CapBasic Capability = 1 << iota
CapShare
CapAutoChecksum
)
var (
ErrInvalidURI = errors.New("Spefified URI is invalid for this provider")
ErrFeatureNotSupported = errors.New("Feature not supported")
)
type CloudProviderInitFunc func(string) (CloudProvider, error)
type CloudProvider interface {
Capabilities() Capability
Name() string
DeleteFile(relativeName string) error
GetFile(relativeName string) (File, error)
ListFiles() ([]File, error)
PutFile(File) error
Share(relativeName string) (string, error)
}