mirror of
https://github.com/yourWaifu/sleepy-discord.git
synced 2025-12-17 02:34:17 -06:00
8 lines
142 B
C++
8 lines
142 B
C++
#include "webhook.h"
|
|
|
|
namespace SleepyDiscord {
|
|
Webhook::Webhook(const json::Value & json) :
|
|
Webhook(json::fromJSON<Webhook>(json)) {
|
|
}
|
|
}
|