DeadlineInfo mirrors the parsed deadline metadata from the scraper.
| 15 | |
| 16 | // DeadlineInfo mirrors the parsed deadline metadata from the scraper. |
| 17 | type DeadlineInfo struct { |
| 18 | Day int `json:"day"` |
| 19 | Month int `json:"month"` |
| 20 | Year int `json:"year"` |
| 21 | Hour int `json:"hour"` |
| 22 | Minute int `json:"minute"` |
| 23 | GMTOffset string `json:"gmt_offset"` |
| 24 | } |
| 25 | |
| 26 | // StoredDeadline preserves the Python payload shape: string, object, or null. |
| 27 | type StoredDeadline struct { |
nothing calls this directly
no outgoing calls
no test coverage detected