diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Config.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp index 6aabc65..4d9fd91 100644 --- a/include/Config.hpp +++ b/include/Config.hpp @@ -51,6 +51,10 @@ namespace QuickMedia { std::vector<std::string> known_homeservers; }; + struct Peertube { + std::vector<std::string> known_instances; + }; + struct Config { Config() = default; Config(const Config&) = delete; @@ -65,6 +69,7 @@ namespace QuickMedia { LocalAnimeConfig local_anime; YoutubeConfig youtube; MatrixConfig matrix; + Peertube peertube; bool use_system_fonts = false; bool use_system_mpv_config = false; bool enable_shaders = true; |