project-demo / frontend /services /processingService.ts
Шатурный Алексей Давыдович
add files
0269f70
raw
history blame contribute delete
577 Bytes
/**
* NOTE: The simulated processing logic in this file is now obsolete.
* All dataset processing is handled by the backend. The upload and processing
* flow is initiated from `DatasetManager.tsx` via the new `apiService.ts`.
* This file is deprecated.
*/
import type { Dataset, FullComparisonResult } from '../types';
export const processDataset = (): Promise<FullComparisonResult> => {
throw new Error(
"The `processDataset` function is deprecated. " +
"Backend processing is initiated via `uploadAndProcessDataset` in `apiService.ts`."
);
};