signals+polyfill.go 138 B

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