mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
10 lines
200 B
Go
10 lines
200 B
Go
|
|
package version
|
||
|
|
|
||
|
|
// Build contains information about the build environment.
|
||
|
|
type Build struct {
|
||
|
|
// The name of the current build.
|
||
|
|
Name string
|
||
|
|
// The version of the current build.
|
||
|
|
Version string
|
||
|
|
}
|