node-ipc/node-ipc.js

18 lines
210 B
JavaScript
Raw Normal View History

2021-07-03 07:35:02 +10:00
import IPC from './services/IPC.js';
2016-01-11 15:59:40 +11:00
class IPCModule extends IPC{
constructor(){
super();
2021-07-08 06:10:40 +10:00
}
2021-07-08 06:10:40 +10:00
IPC=IPC;
2014-02-22 20:13:31 +11:00
}
2021-07-03 07:35:02 +10:00
const singleton=new IPCModule;
export {
singleton as default,
IPCModule
}