mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-17 15:46:44 +00:00
8 lines
91 B
Go
8 lines
91 B
Go
package restarter
|
|
|
|
import "os/exec"
|
|
|
|
func run(cmd *exec.Cmd) error {
|
|
return cmd.Start()
|
|
}
|