Asset represents a single free listing card from Fab.
| 8 | |
| 9 | // Asset represents a single free listing card from Fab. |
| 10 | type Asset struct { |
| 11 | Name *string `json:"name,omitempty"` |
| 12 | Link string `json:"link"` |
| 13 | Image *string `json:"image,omitempty"` |
| 14 | } |
| 15 | |
| 16 | // DeadlineInfo mirrors the parsed deadline metadata from the scraper. |
| 17 | type DeadlineInfo struct { |
nothing calls this directly
no outgoing calls
no test coverage detected