summaryrefslogtreecommitdiff
path: root/bot/src/config.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-07-01 18:54:10 +0500
committerilotterytea <iltsu@alright.party>2025-07-01 18:54:10 +0500
commit8c2e0d8c1faabb76f2e75cddc8b7da2caabf8da6 (patch)
tree5d227bd7529c0fa7e248737d430212275621bb93 /bot/src/config.hpp
parent25a25a07a7b68443791974800dbfc77d223392d6 (diff)
feat: KICK SUPPORT RAAAAH!!!! emojiAngry
Diffstat (limited to 'bot/src/config.hpp')
-rw-r--r--bot/src/config.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/src/config.hpp b/bot/src/config.hpp
index 1e918b6..f6bba7a 100644
--- a/bot/src/config.hpp
+++ b/bot/src/config.hpp
@@ -28,6 +28,10 @@ namespace bot {
std::string token;
};
+ struct KickCredentialsConfiguration {
+ std::string client_id, client_secret;
+ };
+
struct CommandConfiguration {
bool join_allowed = true;
bool join_allow_from_other_chats = false;
@@ -56,6 +60,7 @@ namespace bot {
struct Configuration {
TwitchCredentialsConfiguration twitch_credentials;
+ KickCredentialsConfiguration kick_credentials;
DatabaseConfiguration database;
CommandConfiguration commands;
OwnerConfiguration owner;