mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-10-31 23:40:11 +00: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")
|
||
|
}
|