mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
11 lines
138 B
Go
11 lines
138 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package proc
|
|
|
|
import "context"
|
|
|
|
func Done() <-chan struct{} {
|
|
return context.Background().Done()
|
|
}
|