JSONBytesAccessor is a json string with get functions.
| 7 | |
| 8 | // JSONBytesAccessor is a json string with get functions. |
| 9 | type JSONBytesAccessor struct { |
| 10 | json *[]byte |
| 11 | } |
| 12 | |
| 13 | // NewJSONBytesAccessor adds the Accessor interface to a JSON bytes string. |
| 14 | func NewJSONBytesAccessor(json *[]byte) *JSONBytesAccessor { |
nothing calls this directly
no outgoing calls
no test coverage detected