mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import { shell } from "electron";
|
|
import logit from "../utils/logit";
|
|
|
|
const openFolder = async (event, payload) => {
|
|
logit("📂 Opening Folder: ", payload);
|
|
shell.openPath(payload);
|
|
};
|
|
|
|
export default openFolder;
|