mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 15:44:05 -08:00
86ff4a1717
Pinned github.com/googleapis/gnostic as they introduced braking change. Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
16 lines
275 B
Go
16 lines
275 B
Go
package dns
|
|
|
|
import "fmt"
|
|
|
|
// Version is current version of this library.
|
|
var Version = v{1, 1, 29}
|
|
|
|
// v holds the version of this library.
|
|
type v struct {
|
|
Major, Minor, Patch int
|
|
}
|
|
|
|
func (v v) String() string {
|
|
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
|
|
}
|