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

15 lines
334 B
JavaScript

/**
* 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.
*/
var fs = require('fs'),
_ = require('underscore')._;
var admin = function(dbot) {
};
exports.fetch = function(dbot) {
return new admin(dbot);
};