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

12 lines
112 B
Go

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