import { apiFetch } from "./http"; import type { UserResponse } from "./types"; export async function fetchCurrentUser(): Promise { return apiFetch("/users/me"); }