mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-08 19:30:10 +00:00
Harvey Tindall
711394232b
EXCEPT: migrations.go, log strings there aren't gonna be repeated anywhere else, are very specific, and will probably change a lot.
12 lines
171 B
Go
12 lines
171 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
lm "github.com/hrfee/jfa-go/logmessages"
|
|
)
|
|
|
|
func (app *appContext) HardRestart() error {
|
|
return fmt.Errorf(lm.FailedHardRestartWindows)
|
|
}
|