fix compiling error for goctl on windows

This commit is contained in:
Kevin Wan 2025-01-02 06:22:26 +00:00
parent cfe03ea9e1
commit 6a0c8047f4

View File

@ -4,6 +4,9 @@ package proc
import "time"
type ShutdownConf {}
// AddShutdownListener returns fn itself on windows, lets callers call fn on their own.
func AddShutdownListener(fn func()) func() {
return fn
@ -18,6 +21,10 @@ func AddWrapUpListener(fn func()) func() {
func SetTimeToForceQuit(duration time.Duration) {
}
// Setup does nothing on windows.
func Setup() {
}
// Shutdown does nothing on windows.
func Shutdown() {
}