mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-29 01:02:47 +08:00
12 lines
155 B
JavaScript
12 lines
155 B
JavaScript
import { ipcMain } from 'electron';
|
|
|
|
const init = () => {
|
|
ipcMain.on('msg-trigger', async (event, arg) => {
|
|
|
|
});
|
|
}
|
|
|
|
export default () => {
|
|
init();
|
|
}
|