chore: fix missing funcs on windows (#2825)

This commit is contained in:
Kevin Wan
2023-01-28 22:45:36 +08:00
committed by GitHub
parent 167d76b46d
commit 35b9568657

View File

@@ -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() {
}