mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-28 13:25:42 +00:00
64715c4f33
Signed-off-by: John Howard <jhoward@microsoft.com>
12 lines
121 B
Go
12 lines
121 B
Go
// +build !linux,!windows
|
|
|
|
package reexec
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func Command(args ...string) *exec.Cmd {
|
|
return nil
|
|
}
|