feat: add s3 storage provider integration

This commit is contained in:
2026-01-13 16:46:00 +08:00
parent bd8dab5764
commit e97be37b05
9 changed files with 253 additions and 22 deletions

View File

@@ -5,4 +5,11 @@ type Config struct {
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
}