11 lines
226 B
Go
11 lines
226 B
Go
package s3
|
|
|
|
// Config holds values to configure the driver
|
|
type Config struct {
|
|
AccessKeyID string
|
|
SecretAccessKey string
|
|
Region string
|
|
Endpoint string
|
|
Mounter string
|
|
EncryptionKey string
|
|
}
|