This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeNode/internal/configs/serverconfigs/origin_server_ftp.go
T
2020-09-10 21:04:57 +08:00

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"` // 目录
}