(c *Context, target any, indent string)
| 116 | // JSONSerializer is the interface that encodes and decodes JSON to and from interfaces. |
| 117 | type JSONSerializer interface { |
| 118 | Serialize(c *Context, target any, indent string) error |
| 119 | Deserialize(c *Context, target any) error |
| 120 | } |
| 121 |
no outgoing calls