nix-amer/internal/exec/os.go

12 lines
170 B
Go
Raw Normal View History

package exec
import (
osexec "os/exec"
)
type Default struct{}
func (d *Default) Command(cmd string, args ...string) Command {
return osexec.Command(cmd, args...)
}