Spaces:
Sleeping
Sleeping
File size: 452 Bytes
0269f70 |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* NOTE: The client-side dataset loading logic has been moved to the backend.
* The `DatasetManager` now uses `apiService.ts` to upload the raw .zip file directly to the server.
* This file is now deprecated and should not be used.
*/
export const loadDatasetFromZip = async (): Promise<any> => {
throw new Error("`loadDatasetFromZip` has been moved to the backend. Please use `uploadAndProcessDataset` from `apiService.ts` instead.");
};
|