| 12345678910111213141516171819202122232425262728 |
- const
- fs = require("fs"),
- readline = require("readline"),
- arrayPad = require('./strpad.js').arrayPad;
- Object.assign(global, require("./config.js"));
- function LeVoice(config) {
- this.config = config;
- }
- LeVoice.prototype.init = function(bot, chanName) {
- this.room = chanName;
- this.bot = bot;
- }
- LeVoice.prototype.onSelfJoin = function() { }
- LeVoice.prototype.onJoin = function(nick) { }
- LeVoice.prototype.onNameList = function(nicks) { }
- LeVoice.prototype.onNickPart = function(nick) { }
- LeVoice.prototype.onRemMode = function(user, mode) { }
- LeVoice.prototype.onAddMode = function(user, mode) { }
- LeVoice.prototype.onRename = function(oldNick, newNick) { }
- LeVoice.prototype.onMessage = function(user, text) { }
- module.exports = LeVoice;
|