golang.org/x/tools@v0.21.0/go/ssa/testdata/src/context/context.go (about) 1 package context 2 3 type Context interface { 4 Done() <-chan struct{} 5 } 6 7 func Background() Context