1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-05-28 21:27:48 +02:00
jfa-go/restart_windows.go
Harvey Tindall 0e21942cd6
add hard restart for updates on *nix
reincarnates app.Restart() removed in
bbb0568cc4 as app.HardRestart().
2021-05-03 20:08:23 +01:00

8 lines
136 B
Go

package main
import "fmt"
func (app *appContext) HardRestart() error {
return fmt.Errorf("hard restarts not available on windows")
}