diff --git a/context.go b/context.go index 06f9e92..5e629fc 100644 --- a/context.go +++ b/context.go @@ -3,7 +3,7 @@ package maps import ( "net/http" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) type contextKey int diff --git a/directions.go b/directions.go index 5a9e4da..1c04a3e 100644 --- a/directions.go +++ b/directions.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) const ( diff --git a/distance.go b/distance.go index 63b0692..57aec55 100644 --- a/distance.go +++ b/distance.go @@ -5,7 +5,7 @@ import ( "net/url" "time" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) // DistanceMatrix requests travel distance and time for a matrix of origins and destinations. diff --git a/elevation.go b/elevation.go index dfc9be8..50489d8 100644 --- a/elevation.go +++ b/elevation.go @@ -4,7 +4,7 @@ import ( "fmt" "net/url" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) // Elevation requests elevation data for a series of locations. diff --git a/geocode.go b/geocode.go index 7a3bd73..a1d5e59 100644 --- a/geocode.go +++ b/geocode.go @@ -5,7 +5,7 @@ import ( "net/url" "strings" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) const ( diff --git a/maps.go b/maps.go index 5bd015e..e787466 100644 --- a/maps.go +++ b/maps.go @@ -9,7 +9,7 @@ import ( "net/http" "strings" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) const ( diff --git a/static.go b/static.go index f811f5a..2483978 100644 --- a/static.go +++ b/static.go @@ -8,7 +8,7 @@ import ( "net/url" "strings" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) const ( diff --git a/streetview.go b/streetview.go index 5599e79..7673cb6 100644 --- a/streetview.go +++ b/streetview.go @@ -6,7 +6,7 @@ import ( "net/http" "net/url" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) // StreetView requests a static StreetView image of the requested size. diff --git a/timezone.go b/timezone.go index c8d15f0..f698080 100644 --- a/timezone.go +++ b/timezone.go @@ -5,7 +5,7 @@ import ( "net/url" "time" - "code.google.com/p/go.net/context" + "golang.org/x/net/context" ) // TimeZone requests time zone information about a location.