JSONEncoder is the interface for encoding/json.Encoder.
| 36 | |
| 37 | // JSONEncoder is the interface for encoding/json.Encoder. |
| 38 | type JSONEncoder interface { |
| 39 | Encode(v interface{}) error |
| 40 | SetEscapeHTML(on bool) |
| 41 | SetIndent(prefix, indent string) |
| 42 | } |
| 43 | |
| 44 | // JSON built-in renderer. |
| 45 | type JSON struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…