mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-24 07:30:15 +01:00
16 lines
405 B
JavaScript
16 lines
405 B
JavaScript
import appEvents from './app/index.js'
|
|
import handles from './handles/index.js'
|
|
import shortcuts from './shortcuts/index.js'
|
|
import theme from './theme/index.js'
|
|
import tray from './tray/index.js'
|
|
import updater from './updater/index.js'
|
|
|
|
export default (mainWindow) => {
|
|
appEvents(mainWindow)
|
|
handles(mainWindow)
|
|
updater(mainWindow)
|
|
tray(mainWindow)
|
|
theme(mainWindow)
|
|
shortcuts(mainWindow)
|
|
}
|