mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
926f6a3c72
This reverts commit d0ca4447c6c5642830354740d045f453eb3e77e8.
16 lines
275 B
Go
16 lines
275 B
Go
package dns
|
|
|
|
import "fmt"
|
|
|
|
// Version is current version of this library.
|
|
var Version = v{1, 1, 55}
|
|
|
|
// 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)
|
|
}
|