Make get/put more robust

- init folder if not present already in 'get()' call
  - put.go was referencing wrong args - fix it
  - if no OBJECTNAME is specified during 'get' - grab a
    list of files under "~/.minio"
  - Provide new API GetList() for ObjectStorage struct
This commit is contained in:
Harshavardhana
2014-12-09 03:32:31 -08:00
parent 3fe2c2af01
commit f6a5b61b00
7 changed files with 92 additions and 28 deletions

View File

@@ -1,6 +1,7 @@
package storage
type ObjectStorage interface {
GetList() ([]byte, error)
Get(path string) ([]byte, error)
Put(path string, object []byte) error
}