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