(body []byte, options map[string]any)
| 25 | // It returns the results and any warnings, or an error. |
| 26 | type Adapter interface { |
| 27 | Adapt(body []byte, options map[string]any) ([]byte, []Warning, error) |
| 28 | } |
| 29 | |
| 30 | // Warning represents a warning or notice related to conversion. |
no outgoing calls