mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
15 lines
345 B
C++
15 lines
345 B
C++
#include "providers/twitch/PubsubActions.hpp"
|
|
|
|
#include "providers/twitch/PubsubHelpers.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
PubSubAction::PubSubAction(const rapidjson::Value &data, const QString &_roomID)
|
|
: timestamp(std::chrono::steady_clock::now())
|
|
, roomID(_roomID)
|
|
{
|
|
getCreatedByUser(data, this->source);
|
|
}
|
|
|
|
} // namespace chatterino
|