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

11 lines
138 B
Go

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