实现TLS配置

This commit is contained in:
GoEdgeLab
2020-10-01 16:51:15 +08:00
parent 5ed4393e2a
commit ba705b878f
3 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
package serverconfigs
// FTP源站配置
type FTPServerConfig struct {
Username string `yaml:"username" json:"username"` // 用户名
Password string `yaml:"password" json:"password"` // 密码
Dir string `yaml:"dir" json:"dir"` // 目录
}