dbot/modules/rc/rc.js
Douglas Gardner a074779441 add basic
2013-03-06 13:55:35 +00:00

28 lines
526 B
JavaScript

/**
* Module Name: Link
* Description: Stores recent channel rcs, with commands to retrieve
* information about rcs.
*/
var dgram = require('dgram');
var rc = function(dbot) {
var server = dgram.createSocket("udp4");
server.on("message", function(msg, rinfo) {
console.log(msg.toString());
});
server.bind(dbot.config.rc.port);
var commands = {
};
this.commands = commands;
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new rc(dbot);
};