ipld-eth-server/vendor/github.com/miekg/dns/version.go
Elizabeth Engelman 36533f7c3f Update vendor directory and make necessary code changes
Fixes for new geth version
2019-09-25 16:32:27 -05:00

16 lines
275 B
Go

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