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