go-zero/core/proc/shutdown+polyfill.go
2021-09-12 15:41:33 +08:00

20 lines
409 B
Go

//go:build windows
// +build windows
package proc
import "time"
// AddShutdownListener returns fn itself on windows, lets callers call fn on their own.
func AddShutdownListener(fn func()) func() {
return fn
}
// AddWrapUpListener returns fn itself on windows, lets callers call fn on their own.
func AddWrapUpListener(fn func()) func() {
return fn
}
func SetTimeToForceQuit(duration time.Duration) {
}