dispatch/vendor/github.com/miekg/dns/version.go

16 lines
275 B
Go
Raw Normal View History

2018-05-04 21:39:27 +00:00
package dns
import "fmt"
// Version is current version of this library.
2018-11-10 07:04:36 +00:00
var Version = V{1, 0, 15}
2018-05-04 21:39:27 +00:00
// 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)
}