replace x/net/context by standard package

This commit is contained in:
Antoine GIRARD
2018-10-27 14:38:16 +02:00
parent 9dcd33a902
commit 5b36321dcc
16 changed files with 21 additions and 20 deletions

View File

@@ -14,12 +14,12 @@
package clientcredentials // import "golang.org/x/oauth2/clientcredentials"
import (
"context"
"fmt"
"net/http"
"net/url"
"strings"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/internal"
)