16 lines
305 B
Go
16 lines
305 B
Go
package storage
|
|
|
|
type Config struct {
|
|
Type string // local, s3
|
|
LocalPath string // for local
|
|
Secret string // for signing
|
|
BaseURL string // public url prefix
|
|
// S3-compatible config
|
|
AccessKey string
|
|
SecretKey string
|
|
Region string
|
|
Bucket string
|
|
Endpoint string
|
|
PathStyle bool
|
|
}
|