mirror of
https://github.com/Nystik-gh/ignis.git
synced 2026-06-17 04:35:53 +00:00
16 lines
345 B
JavaScript
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);
|
|
},
|
|
};
|