1
0
mirror of https://github.com/DNSCrypt/dnscrypt-proxy.git synced 2025-01-18 02:54:30 +01:00
dnscrypt-proxy/vendor/github.com/miekg/dns/rr_test.go

8 lines
136 B
Go
Raw Normal View History

package dns
// testRR returns the RR from string s. The error is thrown away.
func testRR(s string) RR {
r, _ := NewRR(s)
return r
}