Validator wraps the core OpenAPI validator with tracing and API-specific error formatting.
| 13 | // Validator wraps the core OpenAPI validator with tracing and |
| 14 | // API-specific error formatting. |
| 15 | type Validator struct { |
| 16 | core *core.Validator |
| 17 | } |
| 18 | |
| 19 | // New creates a Validator backed by the compiled API OpenAPI spec. |
| 20 | func New() (*Validator, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected