mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
11 lines
170 B
Go
11 lines
170 B
Go
package newrelic
|
|
|
|
const (
|
|
major = "1"
|
|
minor = "5"
|
|
patch = "0"
|
|
|
|
// Version is the full string version of this Go Agent.
|
|
Version = major + "." + minor + "." + patch
|
|
)
|