type golang.org/x/oauth2.Config

13 uses

	golang.org/x/oauth2 (current package)
		oauth2.go#L41: type Config struct {
		oauth2.go#L150: func (c *Config) AuthCodeURL(state string, opts ...AuthCodeOption) string {
		oauth2.go#L189: func (c *Config) PasswordCredentialsToken(ctx context.Context, username, password string) (*Token, error) {
		oauth2.go#L213: func (c *Config) Exchange(ctx context.Context, code string, opts ...AuthCodeOption) (*Token, error) {
		oauth2.go#L231: func (c *Config) Client(ctx context.Context, t *Token) *http.Client {
		oauth2.go#L239: func (c *Config) TokenSource(ctx context.Context, t *Token) TokenSource {
		oauth2.go#L257: 	conf         *Config
		token.go#L156: func retrieveToken(ctx context.Context, c *Config, v url.Values) (*Token, error) {

	golang.org/x/oauth2/google
		google.go#L37: func ConfigFromJSON(jsonKey []byte, scope ...string) (*oauth2.Config, error) {
		google.go#L64: 	return &oauth2.Config{
		google.go#L136: 		cfg := &oauth2.Config{
		sdk.go#L44: 	conf         oauth2.Config
		sdk.go#L105: 				conf: oauth2.Config{