DocsExpr points to external documentation.
| 71 | |
| 72 | // DocsExpr points to external documentation. |
| 73 | DocsExpr struct { |
| 74 | // Description of documentation. |
| 75 | Description string `json:"description,omitempty"` |
| 76 | // URL to documentation. |
| 77 | URL string `json:"url,omitempty"` |
| 78 | } |
| 79 | |
| 80 | // URLHolder is an interface that allows expression types to receive |
| 81 | // a URL. Types implementing this interface can use the URL() DSL |
nothing calls this directly
no outgoing calls
no test coverage detected