mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
15 lines
244 B
C++
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
|