debian-forge-composer/internal/osbuild2/device.go
2021-07-24 15:54:00 +02:00

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()
}