LicenseExpr contains the license information for the API.
| 63 | |
| 64 | // LicenseExpr contains the license information for the API. |
| 65 | LicenseExpr struct { |
| 66 | // Name of license used for the API |
| 67 | Name string `json:"name,omitempty"` |
| 68 | // URL to the license used for the API |
| 69 | URL string `json:"url,omitempty"` |
| 70 | } |
| 71 | |
| 72 | // DocsExpr points to external documentation. |
| 73 | DocsExpr struct { |
nothing calls this directly
no outgoing calls
no test coverage detected