mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
14 lines
233 B
Go
14 lines
233 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// getRuntimeDir returns the runtime directory
|
|
func GetRuntimeDir() (string, error) {
|
|
return "", errors.New("this function is not implemented for windows")
|
|
}
|