mirror of
https://github.com/yourWaifu/sleepy-discord.git
synced 2025-12-19 19:59:57 -06:00
11 lines
231 B
C++
11 lines
231 B
C++
#include "user.h"
|
|
|
|
namespace SleepyDiscord {
|
|
User::User(const json::Value & json) :
|
|
User(json::fromJSON<User>(json)) {
|
|
}
|
|
|
|
Connection::Connection(const json::Value & json) :
|
|
Connection(json::fromJSON<Connection>(json)) {
|
|
}
|
|
} |