Chatterino
Env.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QString>
4 
5 namespace chatterino {
6 
7 class Env
8 {
9  Env();
10 
11 public:
12  static const Env &get();
13 
14  const QString recentMessagesApiUrl;
15  const QString linkResolverUrl;
16  const QString twitchServerHost;
17  const uint16_t twitchServerPort;
18  const bool twitchServerSecure;
19 };
20 
21 } // namespace chatterino
Definition: Env.hpp:7
const QString recentMessagesApiUrl
Definition: Env.hpp:14
Definition: Application.cpp:48
const bool twitchServerSecure
Definition: Env.hpp:18
const uint16_t twitchServerPort
Definition: Env.hpp:17
const QString linkResolverUrl
Definition: Env.hpp:15
const QString twitchServerHost
Definition: Env.hpp:16