minio/pkgs/storage/storage.go
2014-12-08 14:29:25 -08:00

7 lines
123 B
Go

package storage
type ObjectStorage interface {
Get(path string) ([]byte, error)
Put(path string, object []byte) error
}