mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00
15 lines
351 B
Go
15 lines
351 B
Go
//go:build amd64 || arm64
|
|
|
|
package os
|
|
|
|
// Manager is the interface for operations on a Podman machine's OS
|
|
type Manager interface {
|
|
// Apply machine OS changes from an OCI image.
|
|
Apply(image string, opts ApplyOptions) error
|
|
}
|
|
|
|
// ApplyOptions are the options for applying an image into a Podman machine VM
|
|
type ApplyOptions struct {
|
|
Image string
|
|
}
|