| 21 | } |
| 22 | |
| 23 | type Cache struct { |
| 24 | CreatedAt time.Time `json:"created_at"` |
| 25 | Id int64 `json:"id"` |
| 26 | Key string `json:"key"` |
| 27 | LastAccessedAt time.Time `json:"last_accessed_at"` |
| 28 | Ref string `json:"ref"` |
| 29 | SizeInBytes int64 `json:"size_in_bytes"` |
| 30 | Version string `json:"version"` |
| 31 | } |
| 32 | |
| 33 | type CachePayload struct { |
| 34 | ActionsCaches []Cache `json:"actions_caches"` |
nothing calls this directly
no outgoing calls
no test coverage detected