Fill-the-Frames / frontend /src /lib /api /export-client.ts
sid385's picture
refactor: Centralize frontend API client and implement modular service layer
a8fd684
Raw
History Blame Contribute Delete
167 Bytes
import { BASE_URL } from "./base-client";
export const exportClient = {
getDownloadUrl: (fileId: string): string =>
`${BASE_URL}/export/download/${fileId}`,
};