8 lines
136 B
Go
Raw Permalink Normal View History

2021-12-04 16:42:11 +00:00
package dns
// testRR returns the RR from string s. The error is thrown away.
func testRR(s string) RR {
r, _ := NewRR(s)
return r
}