2014-11-29 14:42:22 -08:00
|
|
|
package storage
|
2014-11-02 18:56:33 -05:00
|
|
|
|
2014-11-14 18:22:50 -07:00
|
|
|
type ObjectStorage interface {
|
2014-12-09 03:32:31 -08:00
|
|
|
GetList() ([]byte, error)
|
2014-11-14 18:22:50 -07:00
|
|
|
Get(path string) ([]byte, error)
|
|
|
|
Put(path string, object []byte) error
|
|
|
|
}
|