mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-06-04 04:49:29 +00:00
This had some side effects: - Have to add some utils from the kairos/machine modules, which IMHO should not be there, they should be here if the are generic enough - Dropping the sdk dir, just have the modules in the root dir Signed-off-by: Itxaka <itxaka.garcia@spectrocloud.com>
11 lines
124 B
Go
11 lines
124 B
Go
package state
|
|
|
|
type Machine struct {
|
|
BootArgs []string
|
|
CloudConfig string
|
|
}
|
|
|
|
type Spec struct {
|
|
MachineSpec Machine
|
|
}
|