mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +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
|
||
|
|
}
|