mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 10:59:43 -05:00
10 lines
269 B
Go
10 lines
269 B
Go
package client
|
|
|
|
import (
|
|
"github.com/Azure/go-autorest/autorest/adal"
|
|
)
|
|
|
|
type oAuthTokenProvider interface {
|
|
getServicePrincipalToken() (*adal.ServicePrincipalToken, error)
|
|
getServicePrincipalTokenWithResource(resource string) (*adal.ServicePrincipalToken, error)
|
|
}
|