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