mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-27 11:33:33 +00:00
10 lines
209 B
Go
10 lines
209 B
Go
package config
|
|
|
|
import "uncloud/internal/secret"
|
|
|
|
type Cluster struct {
|
|
Name string `toml:"-"`
|
|
Machines []MachineConnection `toml:"machines"`
|
|
Secret secret.Secret `toml:"secret"`
|
|
}
|