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