14 lines
227 B
Go
14 lines
227 B
Go
package osbuild2
|
|
|
|
type Devices interface {
|
|
isStageDevices()
|
|
}
|
|
|
|
type Device struct {
|
|
Type string `json:"type"`
|
|
Options DeviceOptions `json:"options,omitempty"`
|
|
}
|
|
|
|
type DeviceOptions interface {
|
|
isDeviceOptions()
|
|
}
|