cleanup: replace "x/net/context" import with "context" (#2439)

This commit is contained in:
Doug Fawley
2018-11-12 13:30:41 -08:00
committed by GitHub
parent eb55fa50e6
commit 04ea82009c
91 changed files with 97 additions and 118 deletions

View File

@ -19,11 +19,11 @@
package main
import (
"context"
"log"
"os"
"time"
"golang.org/x/net/context"
"google.golang.org/grpc"
pb "google.golang.org/grpc/examples/helloworld/helloworld"
)