| 49 | ) |
| 50 | |
| 51 | type DocLoader struct { |
| 52 | openAPI3Doc *openapi3.T |
| 53 | version string |
| 54 | } |
| 55 | |
| 56 | func NewDocLoader(content string) (*DocLoader, error) { |
| 57 | doc, err := openapi3Loader.LoadFromData([]byte(content)) |
nothing calls this directly
no outgoing calls
no test coverage detected