feat: add torbox icon

This commit is contained in:
Zamitto
2025-02-01 17:53:08 -03:00
parent ebc70ce28f
commit bdf3a98c1a
4 changed files with 10 additions and 18 deletions

View File

@@ -40,7 +40,8 @@ const bundleBackup = async (
return tarLocation;
};
export const createBackup = async (
export const uploadSaveGame = async (
_event: Electron.IpcMainInvokeEvent,
objectId: string,
shop: GameShop,
downloadOptionTitle: string | null
@@ -102,13 +103,4 @@ export const createBackup = async (
});
};
const uploadSaveGame = async (
_event: Electron.IpcMainInvokeEvent,
objectId: string,
shop: GameShop,
downloadOptionTitle: string | null
) => {
return createBackup(objectId, shop, downloadOptionTitle);
};
registerEvent("uploadSaveGame", uploadSaveGame);