mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-01-22 02:07:23 +07:00
fd9ce4606d
* Replace iris with httprouter * Linter fixes * Finalize iris removal * Vendor dependencies for reproducable builds * Api tests are back
8 lines
136 B
Go
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
|
|
}
|