diff options
Diffstat (limited to 'internal/store')
| -rw-r--r-- | internal/store/sqlite.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/store/sqlite.go b/internal/store/sqlite.go index 259bd0f..5f58fd4 100644 --- a/internal/store/sqlite.go +++ b/internal/store/sqlite.go @@ -13,6 +13,14 @@ import ( "task-dashboard/internal/models" ) +// Cache key constants +const ( + CacheKeyTodoistTasks = "todoist_tasks" + CacheKeyTrelloBoards = "trello_boards" + CacheKeyObsidianNotes = "obsidian_notes" + CacheKeyPlanToEatMeals = "plantoeat_meals" +) + type Store struct { db *sql.DB } |
