mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-03 07:00:28 -05:00
* provider/scalway: update sdk for ams1 region * provider/scaleway typecast volume size as of 472a493
17 lines
349 B
Go
17 lines
349 B
Go
package scwversion
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
// VERSION represents the semver version of the package
|
|
VERSION = "v1.11+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)
|
|
}
|