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