import type { CurlToJSONResponse, IRestApiContext } from '@/Interface'; import { makeRestApiRequest } from '@/utils/apiUtils'; export async function getCurlToJson( context: IRestApiContext, curlCommand: string, ): Promise { return makeRestApiRequest(context, 'POST', '/curl-to-json', { curlCommand }); }