linsk/vm/passthrough.go

15 lines
259 B
Go
Raw Normal View History

2023-08-29 15:31:17 +01:00
package vm
type USBDevicePassthroughConfig struct {
VendorID uint16
ProductID uint16
}
type BlockDevicePassthroughConfig struct {
Path string
}
type PassthroughConfig struct {
USB []USBDevicePassthroughConfig
Block []BlockDevicePassthroughConfig
}