blob: 9f62814a5fb899ae4ee0458ebbfa348a4cf9be16 [file] [log] [blame]
package main
import "golang.org/x/net/context" // HL
func main() {
ctx := context.Background()
doSomething(ctx)
}
func doSomething(ctx context.Context) {
// doing something
}