mirror-chatterino2/src/providers/twitch/PubSubClientOptions.hpp

15 lines
244 B
C++
Raw Normal View History

#pragma once
#include <chrono>
namespace chatterino {
/**
* @brief Options to change the behaviour of the underlying websocket clients
**/
struct PubSubClientOptions {
std::chrono::seconds pingInterval_;
};
} // namespace chatterino