nix-amer/internal/exec/os.go

14 lines
226 B
Go
Raw Permalink Normal View History

package exec
import (
osexec "os/exec"
)
2018-11-12 11:08:54 +00:00
// Default executor
type Default struct{}
2018-11-12 11:08:54 +00:00
// Command implements exec.Executor
func (d *Default) Command(cmd string, args ...string) Command {
return osexec.Command(cmd, args...)
}