s3: add interface assertion

This was added for the other drivers in 6b388b1ba6,
but it missed the s3 storage driver.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2023-08-21 13:54:13 +02:00
parent 03d926737a
commit 5b3be39870
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

View file

@ -151,6 +151,8 @@ func (factory *s3DriverFactory) Create(parameters map[string]interface{}) (stora
return FromParameters(parameters)
}
var _ storagedriver.StorageDriver = &driver{}
type driver struct {
S3 *s3.S3
Bucket string