Replace "golang.org/x/net/context" with "context" for go1.7+ #2154

This commit is contained in:
Nick Craig-Wood 2018-04-06 19:13:27 +01:00
parent 67023f0040
commit 80588a5a6b
16 changed files with 19 additions and 21 deletions

View file

@ -1,6 +1,7 @@
package oauthutil
import (
"context"
"crypto/rand"
"encoding/json"
"fmt"
@ -16,7 +17,6 @@ import (
"github.com/ncw/rclone/fs/fshttp"
"github.com/pkg/errors"
"github.com/skratchdot/open-golang/open"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)