修改ssh部署密钥参数

This commit is contained in:
zhangchenhao
2025-05-14 14:25:14 +08:00
parent de05da9cf1
commit f872a07b11

View File

@@ -15,7 +15,7 @@ import (
type SSHConfig struct {
User string
Password string // 可选
PrivateKey string // 可选
PrivateKey string `json:"key"` // 可选
Host string
Port any
}