Files
chatterino2/src/providers/twitch/PubSubClientOptions.hpp
2022-05-07 15:22:39 +00:00

15 lines
244 B
C++

#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