first commit

This commit is contained in:
编码猿
2024-09-27 01:23:51 +08:00
commit 72ab70b6fd
212 changed files with 30296 additions and 0 deletions

18
dist/core/ipc/module/Home.ipc.js vendored Normal file
View File

@@ -0,0 +1,18 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HomeIpc = void 0;
const electron_1 = require("electron");
class HomeIpc {
openFile() {
electron_1.ipcMain.on('openFile', async (event, arg) => {
console.log("测试openFile");
});
}
TestIpc() {
electron_1.ipcMain.on('openFile', async (event, arg) => {
console.log("TestIpc");
});
}
}
exports.HomeIpc = HomeIpc;
//# sourceMappingURL=Home.ipc.js.map