appengine: use stdlib context instead of x/net/context

This commit is contained in:
Antoine GIRARD 2018-11-01 23:41:16 +01:00
parent c453e0c757
commit fbe7944356
No known key found for this signature in database
GPG Key ID: F3B46D1708E22963
2 changed files with 2 additions and 2 deletions

View File

@ -9,11 +9,11 @@
package google
import (
"context"
"sort"
"strings"
"sync"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"google.golang.org/appengine"
)

View File

@ -9,10 +9,10 @@
package google
import (
"context"
"log"
"sync"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)