Merge pull request #125 from fkautz/pr_out_removing_unneeded_comment_from_storage_objectstorage

Removing unneeded comment from storage.ObjectStorage
This commit is contained in:
Harshavardhana 2014-12-14 22:08:50 -08:00
commit 62797cd6a7

View file

@ -4,7 +4,6 @@ import "io"
type ObjectStorage interface {
List() ([]ObjectDescription, error)
// ListBucket(bucketName string) ([]ObjectDescription, error)
Get(path string) (io.Reader, error)
Put(path string, object io.Reader) error
}