Files
podman/pkg/machine/define/setopts.go
Paul Holzinger 4d2fc293c0 machine: make more use of strongunits
To make it very clear in the code what unit the uint represents.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2024-03-06 16:14:30 +01:00

13 lines
282 B
Go

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