gokins/mgr/mgr.go

13 lines
166 B
Go
Raw Normal View History

2020-10-02 16:04:26 +08:00
package mgr
import "context"
var (
mgrCtx context.Context
Cancel context.CancelFunc
)
func init() {
mgrCtx, Cancel = context.WithCancel(context.Background())
}