2012-12-11 16:04:52 +00:00
|
|
|
/**
|
|
|
|
* 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 17:36:59 +00:00
|
|
|
var fs = require('fs'),
|
2013-01-14 16:56:34 +00:00
|
|
|
_ = require('underscore')._;
|
2012-12-11 16:04:52 +00:00
|
|
|
|
|
|
|
var admin = function(dbot) {
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
2013-01-14 16:56:34 +00:00
|
|
|
return new admin(dbot);
|
2012-12-11 16:04:52 +00:00
|
|
|
};
|