aboutsummaryrefslogtreecommitdiff
path: root/src/win.js
blob: 056dee851a1e83fdade23a099f4d8dc9e3edae37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
let win = {
	send: () => {}
}

let func = () => {
	return win;
}

func.set = (main_window) => {
	win = main_window;
}

module.exports = func;