[chore] Validate/set account domain (#619)

* add miekg/dns dependency

* set/validate accountDomain
This commit is contained in:
tobi
2022-06-11 11:09:31 +02:00
committed by GitHub
parent dfdc473cef
commit cf5c6d724d
304 changed files with 34218 additions and 1 deletions

15
vendor/github.com/miekg/dns/version.go generated vendored Normal file
View File

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