vendor azure-sdk-for-go, go-autorest

This commit is contained in:
Cole Mickens
2016-07-11 21:07:26 -07:00
parent 6d9494eff4
commit e31b8de2e1
55 changed files with 18136 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package autorest
import (
"fmt"
)
const (
major = "7"
minor = "0"
patch = "0"
tag = ""
semVerFormat = "%s.%s.%s%s"
)
// Version returns the semantic version (see http://semver.org).
func Version() string {
return fmt.Sprintf(semVerFormat, major, minor, patch, tag)
}