aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Azure/go-autorest/autorest/azure/config.go
blob: bea30b0d67ea47be882e9c0662f574be29d423a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package azure

import (
    "net/url"
)

// OAuthConfig represents the endpoints needed
// in OAuth operations
type OAuthConfig struct {
    AuthorizeEndpoint  url.URL
    TokenEndpoint      url.URL
    DeviceCodeEndpoint url.URL
}