JSONPointable is an interface for structs to implement, when they need to customize the json pointer process or want to avoid the use of reflection.
| 8 | // JSONPointable is an interface for structs to implement, when they need to customize the json |
| 9 | // pointer process or want to avoid the use of reflection. |
| 10 | type JSONPointable interface { |
| 11 | // JSONLookup returns a value pointed at this (unescaped) key. |
| 12 | JSONLookup(key string) (any, error) |
| 13 | } |
| 14 | |
| 15 | // JSONSetable is an interface for structs to implement, when they need to customize the json |
| 16 | // pointer process or want to avoid the use of reflection. |
no outgoing calls
no test coverage detected
searching dependent graphs…