mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-07 05:05:26 +02:00
* Various
This commit is contained in:
parent
72b54b19b7
commit
d16beca341
5 changed files with 23 additions and 4 deletions
|
@ -1,3 +1,18 @@
|
|||
/* jslint node: true */
|
||||
'use strict';
|
||||
|
||||
var MenuModule = require('../core/menu_module.js').MenuModule;
|
||||
var DropFile = require('./door.js').DropFile;
|
||||
|
||||
exports.moduleInfo = {
|
||||
name : 'Abracadabra',
|
||||
desc : 'External BBS Door Module',
|
||||
author : 'NuSkooler',
|
||||
};
|
||||
|
||||
function AbracadabraModule(options) {
|
||||
MenuModule.call(this, options);
|
||||
|
||||
}
|
||||
|
||||
require('util').inherits(AbracadabraModule, MenuModule);
|
Loading…
Add table
Add a link
Reference in a new issue