import { ModelCreateFMResponse } from "@/types"; import { fetcher, FetcherMethod } from "./api" export const createFM = async (id: string): Promise => { return fetcher(FetcherMethod.GET, `/api/v1/file?id=${id}`, null); }