JSONSerializer provides JSON serialization
| 6 | |
| 7 | // JSONSerializer provides JSON serialization |
| 8 | type JSONSerializer interface { |
| 9 | // ToJSON outputs the JSON representation of containers's elements. |
| 10 | ToJSON() ([]byte, error) |
| 11 | // MarshalJSON @implements json.Marshaler |
| 12 | MarshalJSON() ([]byte, error) |
| 13 | } |
| 14 | |
| 15 | // JSONDeserializer provides JSON deserialization |
| 16 | type JSONDeserializer interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…