mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 06:40:26 +08:00
13 lines
195 B
Go
13 lines
195 B
Go
package installers
|
|
|
|
type Credentials struct {
|
|
Host string
|
|
Port int
|
|
Username string
|
|
Password string
|
|
PrivateKey string
|
|
Passphrase string
|
|
Method string
|
|
Sudo bool
|
|
}
|