From 28cea6d0c50595634457bc16d5db41532dab1fbe Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Mon, 13 Jul 2020 21:08:25 -0600 Subject: [PATCH] Stub --- core/wfc.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 core/wfc.js diff --git a/core/wfc.js b/core/wfc.js new file mode 100644 index 00000000..941ed305 --- /dev/null +++ b/core/wfc.js @@ -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 }); + } +}; +