mirror of
https://github.com/containers/podman.git
synced 2025-05-22 01:27:07 +08:00

build a podman-remote binary for windows that allows users to use the remote client on windows and interact with podman on linux system. Signed-off-by: baude <bbaude@redhat.com>
10 lines
192 B
Go
10 lines
192 B
Go
// +build windows
|
|
|
|
package utils
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
func RunUnderSystemdScope(pid int, slice string, unitName string) error {
|
|
return errors.New("not implemented for windows")
|
|
}
|