🚢 tasks.ts

This commit is contained in:
nirholas
2026-03-31 10:23:56 +00:00
parent 801ba5ec3a
commit 22190d7e27

View File

@@ -37,3 +37,4 @@ export function getAllTasks(): Task[] {
export function getTaskByType(type: TaskType): Task | undefined {
return getAllTasks().find(t => t.type === type)
}