This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/installers/credentials.go
T
2021-12-06 19:27:11 +08:00

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
}