Add basic logging, debugging and store.

This commit is contained in:
Patrick Fic
2025-03-11 15:49:22 -07:00
parent 87b261178c
commit 69c504c0c6
11 changed files with 2340 additions and 68 deletions

View File

@@ -0,0 +1,6 @@
import { ipcMain } from "electron";
import ipcTypes from "../../util/ipcTypes.json";
ipcMain.on(ipcTypes.toMain.test, (payload: any) =>
console.log("** Verify that ipcMain is loaded and working.", payload)
);