feat: add support for FTP and FTPS protocols

This commit is contained in:
2026-06-09 14:31:17 +01:00
parent a812d4ac35
commit 715c4eccb6
7 changed files with 199 additions and 0 deletions
+1
View File
@@ -16,6 +16,7 @@ type ConnectionConfig struct {
Bucket string `yaml:"bucket,omitempty" json:"bucket,omitempty"`
Region string `yaml:"region,omitempty" json:"region,omitempty"`
PathStyle bool `yaml:"path_style,omitempty" json:"path_style,omitempty"`
Secure bool `yaml:"secure,omitempty" json:"secure,omitempty"`
Username string `yaml:"username,omitempty" json:"username,omitempty"`
KeychainKey string `yaml:"keychain_key,omitempty" json:"keychain_key,omitempty"`
}