2014-11-29 14:42:22 -08:00
|
|
|
package storage
|
2014-11-02 18:56:33 -05:00
|
|
|
|
2014-12-10 20:40:53 -08:00
|
|
|
import "io"
|
|
|
|
|
2014-11-14 18:22:50 -07:00
|
|
|
type ObjectStorage interface {
|
2014-12-12 02:50:47 -08:00
|
|
|
List() ([]ObjectDescription, error)
|
2014-12-10 20:40:53 -08:00
|
|
|
Get(path string) (io.Reader, error)
|
|
|
|
Put(path string, object io.Reader) error
|
2014-11-14 18:22:50 -07:00
|
|
|
}
|
2014-12-10 18:54:04 -08:00
|
|
|
|
|
|
|
type ObjectDescription struct {
|
2014-12-12 02:50:47 -08:00
|
|
|
Name string
|
|
|
|
Md5sum string
|
|
|
|
Protectionlevel string
|
|
|
|
// Hash string - TODO
|
2014-12-10 18:54:04 -08:00
|
|
|
}
|