mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			221 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			221 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package installers
 | 
						|
 | 
						|
type InstallerInterface interface {
 | 
						|
	// 登录SSH服务
 | 
						|
	Login(credentials *Credentials) error
 | 
						|
 | 
						|
	// 安装
 | 
						|
	Install(dir string, params interface{}) error
 | 
						|
 | 
						|
	// 关闭连接的SSH服务
 | 
						|
	Close() error
 | 
						|
}
 |