diff options
Diffstat (limited to 'content/context/google')
-rw-r--r-- | content/context/google/google.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/context/google/google.go b/content/context/google/google.go index 740e6c5..75442d0 100644 --- a/content/context/google/google.go +++ b/content/context/google/google.go @@ -1,3 +1,5 @@ +// +build OMIT + // Package google provides a function to do Google searches using the Google Web // Search API. See https://developers.google.com/web-search/docs/ // @@ -9,11 +11,11 @@ package google import ( + "context" "encoding/json" "net/http" "golang.org/x/blog/content/context/userip" - "golang.org/x/net/context" ) // Results is an ordered list of search results. |