node-ipc/node-ipc.js

18 lines
210 B
JavaScript
Raw Normal View History

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