Files
proton-bridge/pkg/restarter/start_default.go
2022-11-16 12:26:08 +01:00

8 lines
91 B
Go

package restarter
import "os/exec"
func run(cmd *exec.Cmd) error {
return cmd.Start()
}