mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-30 19:02:03 +08:00

### Summary A config package based on https://github.com/open-telemetry/opentelemetry-collector/blob/main/confmap/confmap.go for signoz. #### Related Issues / PR's This is a part of https://github.com/SigNoz/signoz/pull/5710
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
|
|
}
|