This commit is contained in:
Bryan Ashby 2020-07-13 21:08:25 -06:00
parent 9fa0c4458e
commit 28cea6d0c5
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
1 changed files with 17 additions and 0 deletions

17
core/wfc.js Normal file
View File

@ -0,0 +1,17 @@
// ENiGMA½
const { MenuModule } = require('./menu_module');
exports.moduleInfo = {
name : 'WFC',
desc : 'Semi-Traditional Waiting For Caller',
author : 'NuSkooler',
};
exports.getModule = class WaitingForCallerModule extends MenuModule {
constructor(options) {
super(options);
this.config = Object.assign({}, _.get(options, 'menuConfig.config'), { extraArgs : options.extraArgs });
}
};