修改反向代理实现方式

This commit is contained in:
GoEdgeLab
2020-09-21 20:21:20 +08:00
parent f41d02ac0e
commit 83b9c87dd2
9 changed files with 286 additions and 286 deletions

View File

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