aboutsummaryrefslogtreecommitdiffstats
path: root/src/electron/ipc-api/index.js
blob: be8e0815ae80f1a2f92ca7c6f0d42e6cf8f3dd77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import autoUpdate from './autoUpdate';
import settings from './settings';
import appIndicator from './appIndicator';
import download from './download';

export default (params) => {
  settings(params);
  autoUpdate(params);
  appIndicator(params);
  download(params);
};