add channel.sendMessage and channel.sendTTSMessage

This commit is contained in:
hydrabolt
2016-04-21 17:42:52 +01:00
parent b8283a8f29
commit f3e1760538
7 changed files with 61 additions and 11 deletions

View File

@@ -2,6 +2,7 @@
const ServerChannel = require('./ServerChannel');
const TextChannelDataStore = require('./datastore/TextChannelDataStore');
const TextBasedChannel = require('./interface/TextBasedChannel');
class TextChannel extends ServerChannel {
@@ -26,4 +27,6 @@ class TextChannel extends ServerChannel {
}
}
TextBasedChannel.applyToClass(TextChannel);
module.exports = TextChannel;