forked from TrueCloudLab/distribution
050e1a3ee7
Bumps [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) from 1.3.0 to 1.6.0. - [Release notes](https://github.com/Azure/azure-sdk-for-go/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md) - [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.3.0...sdk/azcore/v1.6.0) --- updated-dependencies: - dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
532 B
Go
18 lines
532 B
Go
//go:build go1.18
|
|
// +build go1.18
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
package azidentity
|
|
|
|
const (
|
|
// UserAgent is the string to be used in the user agent string when making requests.
|
|
component = "azidentity"
|
|
|
|
// module is the fully qualified name of the module used in telemetry and distributed tracing.
|
|
module = "github.com/Azure/azure-sdk-for-go/sdk/" + component
|
|
|
|
// Version is the semantic version (see http://semver.org) of this module.
|
|
version = "v1.6.0"
|
|
)
|