1 package server 2 3 import ( 4 "context" 5 "golang.conradwood.net/go-easyops/ctx" 6 ) 7 8 func context_Background() context.Context { 9 cb := ctx.NewContextBuilder() 10 return cb.ContextWithAutoCancel() 11 12 } 13
View as plain text