1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Merge branch 'feat/db-import-export' of https://github.com/toriphes/antares into pr/toriphes/129

This commit is contained in:
2022-02-16 09:16:14 +01:00
11 changed files with 477 additions and 2 deletions

View File

@ -77,4 +77,12 @@ export default class {
static abortExport () {
return ipcRenderer.invoke('abort-export');
}
static import (params) {
return ipcRenderer.invoke('import-sql', params);
}
static abortImport () {
return ipcRenderer.invoke('abort-import-sql');
}
}