project-demo / frontend /services /datasetLoaderService.ts
Шатурный Алексей Давыдович
add files
0269f70
raw
history blame contribute delete
452 Bytes
/**
* 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.");
};