mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-13 20:29:35 +00:00
13 lines
299 B
Go
13 lines
299 B
Go
package define
|
|
|
|
import "go.podman.io/common/pkg/strongunits"
|
|
|
|
type SetOptions struct {
|
|
CPUs *uint64
|
|
DiskSize *strongunits.GiB
|
|
Memory *strongunits.MiB
|
|
Rootful *bool
|
|
UserModeNetworking *bool
|
|
USBs *[]string
|
|
ImportNativeCA *bool
|
|
}
|