The OpenApiParser parses OpenAPI (2.x and 3.x) specifications. It creates the Definition structure with all the information about the available operations and their parameters for the given service specification.
| 16 | // It creates the Definition structure with all the information about the available |
| 17 | // operations and their parameters for the given service specification. |
| 18 | type OpenApiParser struct{} |
| 19 | |
| 20 | func (p OpenApiParser) getSummary(extensions map[string]interface{}) string { |
| 21 | name := extensions["summary"] |
nothing calls this directly
no outgoing calls
no test coverage detected