Started work on Embeds

This commit is contained in:
hydrabolt
2015-10-29 14:30:34 +00:00
parent 1af1d71643
commit cefbcd05af
9 changed files with 115 additions and 0 deletions

9
src/Embeds/ImageEmbed.js Normal file
View File

@@ -0,0 +1,9 @@
var Embed = require("./Embed.js");
class ImageEmbed extends Embed{
constructor(data){
super(data);
}
}
module.exports = ImageEmbed;