go-zero/core/proc/signals+polyfill.go

11 lines
138 B
Go
Raw Normal View History

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