mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-06-27 23:48:02 +00:00
11 lines
124 B
Go
11 lines
124 B
Go
|
package state
|
||
|
|
||
|
type Machine struct {
|
||
|
BootArgs []string
|
||
|
CloudConfig string
|
||
|
}
|
||
|
|
||
|
type Spec struct {
|
||
|
MachineSpec Machine
|
||
|
}
|