2021-11-08 16:39:17 +00:00

8 lines
136 B
Go

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