mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 00:53:31 +01:00
initial
This commit is contained in:
13
src/structures/TextChannel.js
Normal file
13
src/structures/TextChannel.js
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
const ServerChannel = require('./ServerChannel');
|
||||
const TextChannelDataStore = require('./datastore/TextChannelDataStore');
|
||||
|
||||
class TextChannel extends ServerChannel {
|
||||
constructor(guild, data) {
|
||||
super(guild, data);
|
||||
this.store = new TextChannelDataStore();
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = TextChannel;
|
||||
Reference in New Issue
Block a user