Add PutBucket and ListBuckets service

This commit is contained in:
Harshavardhana
2015-01-21 00:50:23 -08:00
parent e22ae2475a
commit 5b67da7d96
6 changed files with 197 additions and 25 deletions

View File

@@ -10,12 +10,28 @@ type ObjectExists struct {
key string
}
type BucketNameInvalid struct {
bucket string
}
type BucketExists struct {
bucket string
}
type ObjectNotFound GenericError
func (self ObjectNotFound) Error() string {
return "Not Found: " + self.bucket + "#" + self.path
return "Object not Found: " + self.bucket + "#" + self.path
}
func (self ObjectExists) Error() string {
return "Object exists: " + self.bucket + "#" + self.key
}
func (self BucketNameInvalid) Error() string {
return "Bucket name invalid: " + self.bucket
}
func (self BucketExists) Error() string {
return "Bucket exists: " + self.bucket
}