mirror of
https://github.com/yourWaifu/sleepy-discord.git
synced 2025-12-20 12:29:46 -06:00
35 lines
902 B
C++
35 lines
902 B
C++
#include "embed.h"
|
|
|
|
namespace SleepyDiscord {
|
|
EmbedThumbnail::EmbedThumbnail(const json::Value & json) :
|
|
EmbedThumbnail(json::fromJSON<EmbedThumbnail>(json)) {
|
|
}
|
|
|
|
EmbedVideo::EmbedVideo(const json::Value & json) :
|
|
EmbedVideo(json::fromJSON<EmbedVideo>(json)) {
|
|
}
|
|
|
|
EmbedImage::EmbedImage(const json::Value & json) :
|
|
EmbedImage(json::fromJSON<EmbedImage>(json)) {
|
|
}
|
|
|
|
EmbedProvider::EmbedProvider(const json::Value & json) :
|
|
EmbedProvider(json::fromJSON<EmbedProvider>(json)) {
|
|
}
|
|
|
|
EmbedAuthor::EmbedAuthor(const json::Value & json) :
|
|
EmbedAuthor(json::fromJSON<EmbedAuthor>(json)) {
|
|
}
|
|
|
|
EmbedFooter::EmbedFooter(const json::Value & json) :
|
|
EmbedFooter(json::fromJSON<EmbedFooter>(json)) {
|
|
}
|
|
|
|
EmbedField::EmbedField(const json::Value & json) :
|
|
EmbedField(json::fromJSON<EmbedField>(json)) {
|
|
}
|
|
|
|
Embed::Embed(const json::Value & json) :
|
|
Embed(json::fromJSON<Embed>(json)) {
|
|
}
|
|
} |