mirror-chatterino2/src/common/Env.hpp

23 lines
379 B
C++
Raw Normal View History

2019-05-26 21:48:45 +02:00
#pragma once
#include <QString>
namespace chatterino {
class Env
{
Env();
public:
static const Env &get();
const QString recentMessagesApiUrl;
const QString linkResolverUrl;
const QString twitchEmoteSetResolverUrl;
const QString twitchServerHost;
const uint16_t twitchServerPort;
const bool twitchServerSecure;
2019-05-26 21:48:45 +02:00
};
} // namespace chatterino