2018-01-11 22:38:50 +01:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// Version is current version of this library.
|
2021-12-24 09:16:59 +01:00
|
|
|
var Version = v{1, 1, 45}
|
2018-01-11 22:38:50 +01:00
|
|
|
|
2020-03-13 17:58:44 +01:00
|
|
|
// v holds the version of this library.
|
|
|
|
type v struct {
|
2018-01-11 22:38:50 +01:00
|
|
|
Major, Minor, Patch int
|
|
|
|
}
|
|
|
|
|
2020-03-13 17:58:44 +01:00
|
|
|
func (v v) String() string {
|
2018-01-11 22:38:50 +01:00
|
|
|
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
|
|
|
|
}
|