DeadlineInfo mirrors the structured deadline payload used by the Python bot.
| 36 | |
| 37 | // DeadlineInfo mirrors the structured deadline payload used by the Python bot. |
| 38 | type DeadlineInfo struct { |
| 39 | Day int `json:"day"` |
| 40 | Month int `json:"month"` |
| 41 | Year int `json:"year"` |
| 42 | Hour int `json:"hour"` |
| 43 | Minute int `json:"minute"` |
| 44 | GMTOffset string `json:"gmt_offset"` |
| 45 | } |
| 46 | |
| 47 | // Snapshot is the runtime state persisted by save_snapshot/load_snapshot. |
| 48 | type Snapshot struct { |
nothing calls this directly
no outgoing calls
no test coverage detected