import type { PlanWithFeatures } from '@repo/api-contract'; import { http } from '../http'; export async function list() { const response = await http.get('/api/plans'); return response.data; }