prometheus/vendor/github.com/miekg/dns/version.go
Tariq Ibrahim 1c0df5b7d1
update consul and dns dependencies
Signed-off-by: Tariq Ibrahim <tariq181290@gmail.com>
2019-05-20 11:09:08 -07:00

16 lines
275 B
Go

package dns
import "fmt"
// Version is current version of this library.
var Version = V{1, 1, 10}
// 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)
}