mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00: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>
9 lines
192 B
Go
9 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")
|
|
}
|