mirror of
https://github.com/containers/podman.git
synced 2025-10-16 18:53:19 +08:00
13 lines
273 B
Go
13 lines
273 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
|
|
}
|