github.com/shuguocloud/go-zero@v1.3.0/core/proc/signals+polyfill.go (about)

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