ci: testing cloudfront deployment

This commit is contained in:
Chubby Granny Chaser 2024-10-21 19:33:25 +01:00
parent af8468066a
commit e86daacad4
No known key found for this signature in database

View file

@ -0,0 +1,11 @@
import { shell } from "electron";
import { registerEvent } from "../register-event";
const showItemInFolder = async (
_event: Electron.IpcMainInvokeEvent,
filePath: string
) => {
return shell.showItemInFolder(filePath);
};
registerEvent("showItemInFolder", showItemInFolder);