Removing unneeded comment from storage.ObjectStorage

This commit is contained in:
Frederick F. Kautz IV 2014-12-15 15:59:17 +13:00
parent 8ff7fea4ac
commit d7e5e0df4f

View File

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