summaryrefslogtreecommitdiff
path: root/internal/store/sqlite.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/store/sqlite.go')
-rw-r--r--internal/store/sqlite.go8
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
}