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