Files
EdgeCommon/pkg/serverconfigs/ftp_server_config.go

9 lines
260 B
Go
Raw Permalink Normal View History

2020-09-13 19:27:47 +08:00
package serverconfigs
// FTP源站配置
2020-10-01 16:51:15 +08:00
type FTPServerConfig 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"` // 目录
}