(report Report, out string)
| 16 | } |
| 17 | |
| 18 | func DsdxJson(report Report, out string) { |
| 19 | outWrite(out, func(w io.Writer) error { |
| 20 | return json.NewEncoder(w).Encode(dsdxDoc(report)) |
| 21 | }) |
| 22 | } |
| 23 | |
| 24 | func DsdxXml(report Report, out string) { |
| 25 | outWrite(out, func(w io.Writer) error { |