mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
f97780d84e
Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
14 lines
244 B
C++
14 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
|