escrcpy/electron/ipc/index.js

16 lines
405 B
JavaScript
Raw Normal View History

2024-09-12 13:11:46 +02:00
import appEvents from './app/index.js'
import handles from './handles/index.js'
2024-09-07 19:55:54 +02:00
import shortcuts from './shortcuts/index.js'
import theme from './theme/index.js'
2024-09-07 19:55:54 +02:00
import tray from './tray/index.js'
import updater from './updater/index.js'
export default (mainWindow) => {
2024-09-12 13:11:46 +02:00
appEvents(mainWindow)
handles(mainWindow)
updater(mainWindow)
tray(mainWindow)
theme(mainWindow)
shortcuts(mainWindow)
}