Files
EdgeAPI/internal/installers/installer_interface.go

13 lines
221 B
Go
Raw Normal View History

2020-09-06 16:19:54 +08:00
package installers
type InstallerInterface interface {
// 登录SSH服务
Login(credentials *Credentials) error
// 安装
Install(dir string, params interface{}) error
// 关闭连接的SSH服务
Close() error
}