mirror of
https://github.com/containers/podman.git
synced 2025-12-04 12:17:34 +08:00
* Use vfkit command line assembly * Inject ignition file into guest using http over vsock * Ready notification through use of vsock [NO NEW TESTS NEEDED] Signed-off-by: Brent Baude <bbaude@redhat.com>
18 lines
221 B
Go
18 lines
221 B
Go
package decoder
|
|
|
|
import "context"
|
|
|
|
type OptionFlags uint8
|
|
|
|
const (
|
|
FirstWinOption OptionFlags = 1 << iota
|
|
ContextOption
|
|
PathOption
|
|
)
|
|
|
|
type Option struct {
|
|
Flags OptionFlags
|
|
Context context.Context
|
|
Path *Path
|
|
}
|