1// +build go1.13
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License.
5
6package azidentity
7
8const (
9	// UserAgent is the string to be used in the user agent string when making requests.
10	UserAgent = "azidentity/" + Version
11
12	// Version is the semantic version (see http://semver.org) of this module.
13	Version = "v0.9.2"
14)
15