(document openapi3.T)
| 47 | } |
| 48 | |
| 49 | func (p OpenApiParser) getDocumentSummary(document openapi3.T) string { |
| 50 | if document.Info == nil { |
| 51 | return "" |
| 52 | } |
| 53 | return document.Info.Title |
| 54 | } |
| 55 | |
| 56 | func (p OpenApiParser) getDocumentDescription(document openapi3.T) string { |
| 57 | if document.Info == nil { |