Rename StoreBucket to CreateBucket

This commit is contained in:
Frederick F. Kautz IV
2015-03-11 20:14:40 -07:00
parent 8c6aa45458
commit 24d5018037
8 changed files with 34 additions and 32 deletions

View File

@@ -27,7 +27,7 @@ import (
type Storage interface {
// Bucket Operations
ListBuckets() ([]BucketMetadata, error)
StoreBucket(bucket string) error
CreateBucket(bucket string) error
StoreBucketPolicy(bucket string, p BucketPolicy) error
GetBucketPolicy(bucket string) (BucketPolicy, error)