s3-share/internal/types/share.go
2022-05-09 16:10:05 +02:00

16 lines
235 B
Go

package types
type Share struct {
Slug string `json:"slug"`
Key string `json:"key"`
}
type AppConfig struct {
S3Endpoint string
S3AccessKey string
S3SecretKey string
S3SSL bool
S3Bucket string
Address string
}