2018-03-02 09:46:04 +00:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// Version is current version of this library.
|
2019-01-07 17:30:06 +00:00
|
|
|
var Version = V{1, 1, 1}
|
2018-03-02 09:46:04 +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)
|
|
|
|
}
|