Files
discord.js/src/structures/Channel.js
hydrabolt 9956e43c8e initial
2016-04-16 22:58:49 +01:00

17 lines
195 B
JavaScript

'use strict';
class Channel {
constructor(client, data) {
this.client = client;
if (data) {
this.setup(data);
}
}
setup(data) {
this.id = data.id;
}
}
module.exports = Channel;