mirror of
https://github.com/yourWaifu/sleepy-discord.git
synced 2025-12-21 13:00:23 -06:00
17 lines
270 B
C++
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)) {
|
|
}
|
|
|
|
}
|