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

17 lines
270 B
C++

#include "channel.h"
namespace SleepyDiscord {
Channel::~Channel() {
}
Channel::Channel(const json::Value& json) :
Channel(json::fromJSON<Channel>(json)) {
}
Overwrite::Overwrite(const json::Value& json) :
Overwrite(json::fromJSON<Overwrite>(json)) {
}
}