Make ServerChannel GuildChannel

This commit is contained in:
Amish Shah
2016-08-18 10:27:31 +01:00
parent 46e89f56c7
commit 159233059e
5 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
const ServerChannel = require('./ServerChannel');
const GuildChannel = require('./GuildChannel');
const TextChannelDataStore = require('./datastore/TextChannelDataStore');
const TextBasedChannel = require('./interface/TextBasedChannel');
/**
* Represents a Server Text Channel on Discord.
*/
class TextChannel extends ServerChannel {
class TextChannel extends GuildChannel {
constructor(guild, data) {
super(guild, data);