mirror of
https://github.com/distribution/distribution.git
synced 2025-09-01 06:57:45 +00:00
This pulls in go-redis update as well. Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
19 lines
532 B
Go
19 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.8.2"
|
|
)
|