moby--moby/pkg/reexec/command_unsupported.go

12 lines
121 B
Go

// +build !linux,!windows
package reexec
import (
"os/exec"
)
func Command(args ...string) *exec.Cmd {
return nil
}