Files
sleepy-discord/sleepy_discord/webhook.cpp
2021-11-26 11:53:20 -05:00

8 lines
142 B
C++

#include "webhook.h"
namespace SleepyDiscord {
Webhook::Webhook(const json::Value & json) :
Webhook(json::fromJSON<Webhook>(json)) {
}
}