mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-07 18:00:45 -05:00
multiple scaleway-cli packages were out of sync, unfortunately this pulled in some other updates.
17 lines
351 B
Go
17 lines
351 B
Go
package scwversion
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
// VERSION represents the semver version of the package
|
|
VERSION = "v1.11.1+dev"
|
|
|
|
// GITCOMMIT represents the git commit hash of the package, it is configured at build time
|
|
GITCOMMIT string
|
|
)
|
|
|
|
// UserAgent returns a string to be used by API
|
|
func UserAgent() string {
|
|
return fmt.Sprintf("scw/%v", VERSION)
|
|
}
|