mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
9 lines
266 B
Go
9 lines
266 B
Go
package serverconfigs
|
|
|
|
// FTP源站配置
|
|
type OriginServerFTPConfig struct {
|
|
Username string `yaml:"username" json:"username"` // 用户名
|
|
Password string `yaml:"password" json:"password"` // 密码
|
|
Dir string `yaml:"dir" json:"dir"` // 目录
|
|
}
|