Baphomet is the dedicated bot for nulloctet matrix
 
 
 
 
 

19 lines
376 B

/**
* Administration module
*/
let { AbstractModule } = require('./abstract');
class AdminModule extends AbstractModule {
constructor() {
super(
"Administration",
"Support administration tasks",
"admin"
);
this.helpAndUsage = `Usage: admin <command>
...`;
}
}
exports.module = new AdminModule();