Files
podman/pkg/machine/define/setopts.go
Jake Correnti 7be6cd4b09 machine: USB passthrough
Sets up USB passthrough for machine. Additionally moves `SetOptions` out
from `pkg/machine/config.go` to its own file in
`pkg/machine/define/setopts.go`.

[NO NEW TESTS NEEDED]

Signed-off-by: Jake Correnti <jakecorrenti+github@proton.me>
2024-02-08 20:30:43 -05:00

13 lines
273 B
Go

package define
import "github.com/containers/common/pkg/strongunits"
type SetOptions struct {
CPUs *uint64
DiskSize *strongunits.GiB
Memory *uint64
Rootful *bool
UserModeNetworking *bool
USBs *[]string
}