UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

7 lines (6 loc) 226 B
import { Task } from '@/types' import { fetchJson } from '../http/fetchJson' import { API_BASE } from '../constants' export function getTask(id: string): Promise<Task> { return fetchJson<Task>(`${API_BASE}/tasks/${id}`) }