signals+polyfill.go 120 B

123456789
  1. //go:build windows
  2. package proc
  3. import "context"
  4. func Done() <-chan struct{} {
  5. return context.Background().Done()
  6. }