import { HealthResponse, StatsResponse, LeaderboardEntry, TaskId } from "./types"; const BASE = import.meta.env.DEV ? "/api" : ""; export const fetchHealth = (): Promise => fetch(`${BASE}/health`).then(r => r.json()); export const fetchStats = (): Promise => fetch(`${BASE}/stats`).then(r => r.json()); export const fetchLeaderboard = (taskId: TaskId, limit = 10): Promise => fetch(`${BASE}/leaderboard?task_id=${taskId}&limit=${limit}`) .then(r => r.json()) .then(data => data.entries || []);