diff --git a/core/proc/shutdown+polyfill.go b/core/proc/shutdown+polyfill.go index c9d300fa..3d5e135c 100644 --- a/core/proc/shutdown+polyfill.go +++ b/core/proc/shutdown+polyfill.go @@ -15,5 +15,14 @@ func AddWrapUpListener(fn func()) func() { return fn } +// SetTimeToForceQuit does nothing on windows. func SetTimeToForceQuit(duration time.Duration) { } + +// Shutdown does nothing on windows. +func Shutdown() { +} + +// WrapUp does nothing on windows. +func WrapUp() { +}