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-10 21:54:04 -05:00
|
|
|
List(path 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 {
|
|
|
|
Path string
|
|
|
|
IsDir bool
|
|
|
|
Hash string
|
|
|
|
}
|