Spaces:
Sleeping
Sleeping
File size: 577 Bytes
0269f70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/**
* 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`."
);
};
|