2018-01-26 23:51:00 +00:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// Version is current version of this library.
|
2018-10-03 16:55:26 +00:00
|
|
|
var Version = V{1, 0, 12}
|
2018-01-26 23:51:00 +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)
|
|
|
|
}
|