Files
podman/pkg/machine/os/config.go
Oleksandr Redko 2a2d0b0e18 chore: delete obsolete // +build lines
Signed-off-by: Oleksandr Redko <Oleksandr_Redko@epam.com>
2024-01-04 11:53:38 +02:00

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
}