linsk/vm/passthrough.go
2023-08-29 15:31:17 +01:00

15 lines
259 B
Go

package vm
type USBDevicePassthroughConfig struct {
VendorID uint16
ProductID uint16
}
type BlockDevicePassthroughConfig struct {
Path string
}
type PassthroughConfig struct {
USB []USBDevicePassthroughConfig
Block []BlockDevicePassthroughConfig
}