mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-01-18 16:47:42 +01:00
8 lines
136 B
Go
8 lines
136 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func (app *appContext) HardRestart() error {
|
|
return fmt.Errorf("hard restarts not available on windows")
|
|
}
|