1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-13 06:45:46 +00:00
gitea/vendor/github.com/miekg/dns/version.go
6543 8ea1d32bea
[Vendor] update certmagic (#15590)
* update github.com/caddyserver/certmagic v0.12.0 -> v0.13.0

* migrate
2021-04-22 22:42:33 +02:00

16 lines
275 B
Go
Vendored

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