10 lines
120 B
Go
10 lines
120 B
Go
//go:build windows
|
|
|
|
package proc
|
|
|
|
import "context"
|
|
|
|
func Done() <-chan struct{} {
|
|
return context.Background().Done()
|
|
}
|