diff options
Diffstat (limited to 'internal/models/types.go')
| -rw-r--r-- | internal/models/types.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/models/types.go b/internal/models/types.go index f45e346..0284a3a 100644 --- a/internal/models/types.go +++ b/internal/models/types.go @@ -15,6 +15,7 @@ type Task struct { Labels []string `json:"labels"` URL string `json:"url"` CreatedAt time.Time `json:"created_at"` + IsRecurring bool `json:"is_recurring"` } // Meal represents a meal from PlanToEat @@ -100,6 +101,13 @@ type CalendarEvent struct { HTMLLink string `json:"html_link"` } +// Bug represents a bug report +type Bug struct { + ID int64 `json:"id"` + Description string `json:"description"` + CreatedAt time.Time `json:"created_at"` +} + // CacheMetadata tracks when data was last fetched type CacheMetadata struct { Key string `json:"key"` |
