Files
uncloud/internal/cli/config/machine.go
T

9 lines
189 B
Go

package config
type MachineConnection struct {
User string `toml:"user,omitempty"`
Host string `toml:"host"`
Port int `toml:"port"`
SSHKey string `toml:"ssh_key,omitempty"`
}