This commit is contained in:
Miek Gieben 2013-01-25 08:38:48 +01:00
parent be7b4d5873
commit 2a34616419
1 changed files with 0 additions and 9 deletions

View File

@ -1,9 +0,0 @@
package dns
// UnmarshalJSON(data []byte) (err error)
func (rr *A) MarshalJSON() ([]byte, error) {
// b, _ := json.Marshal(rr.Header())
b := []byte(`"` + rr.A.String() + `"`)
return b, nil
}