mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			260 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			260 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package serverconfigs
 | 
						|
 | 
						|
// FTP源站配置
 | 
						|
type FTPServerConfig struct {
 | 
						|
	Username string `yaml:"username" json:"username"` // 用户名
 | 
						|
	Password string `yaml:"password" json:"password"` // 密码
 | 
						|
	Dir      string `yaml:"dir" json:"dir"`           // 目录
 | 
						|
}
 |