Add ability to open bucket using S3 object for testing purposes.

This commit is contained in:
Chris Howey 2015-05-15 17:29:48 -05:00
parent b793261ba1
commit 4aa75994b0
2 changed files with 6 additions and 1 deletions

View file

@ -28,6 +28,11 @@ type S3 struct {
path string
}
// Open a backend using an S3 bucket object
func OpenS3Bucket(bucket *s3.Bucket, bucketname string) *S3 {
return &S3{bucket: bucket, path: bucketname}
}
// Open opens the s3 backend at bucket and region.
func Open(regionname, bucketname string) (*S3, error) {
auth, err := aws.EnvAuth()