enigma-bbs/core/web_handler_module.js

13 lines
254 B
JavaScript
Raw Normal View History

2022-12-31 22:48:51 +00:00
const { PluginModule } = require('./plugin_module');
module.exports = class WebHandlerModule extends PluginModule {
constructor(options) {
super(options);
}
init(cb) {
// to be implemented!
return cb(null);
}
};