Files
EdgeCommon/pkg/serverconfigs/origin_ftp_config.go

9 lines
260 B
Go
Raw Normal View History

2020-09-13 19:27:47 +08:00
package serverconfigs
// FTP源站配置
2020-09-21 20:21:20 +08:00
type OriginFTPConfig struct {
2020-09-13 19:27:47 +08:00
Username string `yaml:"username" json:"username"` // 用户名
Password string `yaml:"password" json:"password"` // 密码
Dir string `yaml:"dir" json:"dir"` // 目录
}