go-zero/core/proc/signals+polyfill.go
2023-03-10 17:36:39 +08:00

10 lines
120 B
Go

//go:build windows
package proc
import "context"
func Done() <-chan struct{} {
return context.Background().Done()
}