3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/modules/admin/admin.js

17 lines
387 B
JavaScript
Raw Normal View History

/**
* Module Name: Admin
* Description: Set of commands which only one who is a DepressionBot
* administrator can run - as such, it has its own command execution listener.
*/
2013-01-12 18:36:59 +01:00
var fs = require('fs'),
2013-01-14 17:56:34 +01:00
_ = require('underscore')._;
var admin = function(dbot) {
2013-01-14 17:56:34 +01:00
this.name = 'admin';
this.ignorable = false;
};
exports.fetch = function(dbot) {
2013-01-14 17:56:34 +01:00
return new admin(dbot);
};