mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
15 lines
217 B
Go
15 lines
217 B
Go
|
package s3
|
||
|
|
||
|
type AssetStorage struct {
|
||
|
Type string
|
||
|
Config S3Config
|
||
|
}
|
||
|
|
||
|
type S3Config struct {
|
||
|
Endpoint string
|
||
|
AccessKeyID string
|
||
|
SecretAccessKey string
|
||
|
SSL bool
|
||
|
Location string
|
||
|
}
|