Files
ignis/shims/electron/remote/shell.js
2026-03-11 22:08:30 +01: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);
},
};