forked from Silverfish/proton-bridge
8 lines
89 B
Go
8 lines
89 B
Go
package restarter
|
|
|
|
import "os/exec"
|
|
|
|
func run(cmd *exec.Cmd) error {
|
|
return cmd.Run()
|
|
}
|