2014-11-29 17:42:22 -05:00
|
|
|
package storage
|
2014-11-02 18:56:33 -05:00
|
|
|
|
2014-12-10 23:40:53 -05:00
|
|
|
import "io"
|
|
|
|
|
2014-11-14 20:22:50 -05:00
|
|
|
type ObjectStorage interface {
|
2014-12-12 05:50:47 -05:00
|
|
|
List() ([]ObjectDescription, error)
|
2014-12-13 04:39:14 -05:00
|
|
|
// ListBucket(bucketName string) ([]ObjectDescription, error)
|
2014-12-10 23:40:53 -05:00
|
|
|
Get(path string) (io.Reader, error)
|
|
|
|
Put(path string, object io.Reader) error
|
2014-11-14 20:22:50 -05:00
|
|
|
}
|
2014-12-10 21:54:04 -05:00
|
|
|
|
|
|
|
type ObjectDescription struct {
|
2014-12-14 20:26:16 -05:00
|
|
|
Name string
|
|
|
|
Md5sum string
|
|
|
|
Murmur3 string
|
2014-12-10 21:54:04 -05:00
|
|
|
}
|