mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
Started work on Embeds
This commit is contained in:
7
src/Embeds/Embed.js
Normal file
7
src/Embeds/Embed.js
Normal file
@@ -0,0 +1,7 @@
|
||||
class Embed{
|
||||
constructor(data){
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Embed;
|
||||
9
src/Embeds/ImageEmbed.js
Normal file
9
src/Embeds/ImageEmbed.js
Normal file
@@ -0,0 +1,9 @@
|
||||
var Embed = require("./Embed.js");
|
||||
|
||||
class ImageEmbed extends Embed{
|
||||
constructor(data){
|
||||
super(data);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ImageEmbed;
|
||||
9
src/Embeds/LinkEmbed.js
Normal file
9
src/Embeds/LinkEmbed.js
Normal file
@@ -0,0 +1,9 @@
|
||||
var Embed = require("./Embed.js");
|
||||
|
||||
class LinkEmbed extends Embed{
|
||||
constructor(data){
|
||||
super(data);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = LinkEmbed;
|
||||
9
src/Embeds/VideoEmbed.js
Normal file
9
src/Embeds/VideoEmbed.js
Normal file
@@ -0,0 +1,9 @@
|
||||
var Embed = require("./Embed.js");
|
||||
|
||||
class VideoEmbed extends Embed{
|
||||
constructor(data){
|
||||
super(data);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = VideoEmbed;
|
||||
Reference in New Issue
Block a user