mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 08:55:44 +00:00
Moves all of the ignitionfiles out of the `machine` package and into its own called `ignition`. This required `VMType` to get moved out of the `machine` package and into the `define` package in order to prevent a circular dependency. Signed-off-by: Jake Correnti <jakecorrenti+github@proton.me>
7 lines
98 B
Go
7 lines
98 B
Go
//go:build windows
|
|
|
|
package ignition
|
|
|
|
func getLocalTimeZone() (string, error) {
|
|
return "", nil
|
|
}
|