diff include/core/config.h @ 231:69f4768a820c

chore: merge divergent branches
author Paper <paper@paper.us.eu.org>
date Sat, 13 Jan 2024 09:43:41 -0500
parents d030b30526d5
children c130f47f6f48
line wrap: on
line diff
--- a/include/core/config.h	Sat Jan 13 09:42:02 2024 -0500
+++ b/include/core/config.h	Sat Jan 13 09:43:41 2024 -0500
@@ -9,6 +9,7 @@
 
 #include <string>
 #include <vector>
+#include <set>
 #include <utility>
 
 struct MediaPlayer {
@@ -34,12 +35,9 @@
 			bool highlighted_anime_above_others;
 		} anime_list;
 
-		/* these should preferably be in an
-		   "auth" struct... */
 		struct {
 			struct {
 				std::string auth_token;
-				std::string username;
 				int user_id;
 			} anilist;
 		} auth;
@@ -54,7 +52,8 @@
 		} torrents;
 
 		struct {
-			std::vector<std::string> paths;
+			bool real_time_monitor;
+			std::set<std::string> paths;
 		} library;
 };