node-ipc/node-ipc.js

15 lines
195 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();
}
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
}