2026-05-05 13:37:15 +08:00

7 lines
199 B
JavaScript

const { ipcMain } = require("electron");
const { callPython } = require("./templateIpc");
ipcMain.handle("generate:run", async (_, req) => {
return callPython({ action: "generate", ...req });
});