mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
11 lines
173 B
Go
11 lines
173 B
Go
package config
|
|
|
|
import (
|
|
"uncloud/internal/secret"
|
|
)
|
|
|
|
type MachineConnection struct {
|
|
Host string `toml:"host"`
|
|
PublicKey secret.Secret `toml:"public_key"`
|
|
}
|