mirror of
https://github.com/containers/podman.git
synced 2025-10-31 01:50:50 +08:00
13 lines
231 B
Go
13 lines
231 B
Go
// +build windows
|
|
|
|
package config
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
// getRuntimeDir returns the runtime directory
|
|
func getRuntimeDir() (string, error) {
|
|
return "", errors.New("this function is not implemented for windows")
|
|
}
|