Files
ignis/packages/shim/src/electron/remote/shell.js
2026-05-20 20:49:28 +02:00

16 lines
345 B
JavaScript

export const shellShim = {
openExternal(url) {
window.open(url, "_blank");
return Promise.resolve();
},
openPath(filePath) {
console.log("[shim:shell] openPath (stub):", filePath);
return Promise.resolve("");
},
showItemInFolder(filePath) {
console.log("[shim:shell] showItemInFolder (stub):", filePath);
},
};