dbot/modules/admin/admin.js

15 lines
334 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) {
};
exports.fetch = function(dbot) {
2013-01-14 17:56:34 +01:00
return new admin(dbot);
};