summaryrefslogtreecommitdiff
path: root/src/bundle.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-08 22:06:23 +0500
committerilotterytea <iltsu@alright.party>2024-05-08 22:06:23 +0500
commit8c83c83184cc2daf5fb10bbcd01d92dee0bfbb26 (patch)
treeed81c57775b9bfd03670e03ea369501f9484471e /src/bundle.hpp
parent3a1e75ab3767139de0f381a04c44e92bb0d947de (diff)
upd: added Configuration into InstanceBundle
Diffstat (limited to 'src/bundle.hpp')
-rw-r--r--src/bundle.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bundle.hpp b/src/bundle.hpp
index 1ea47a3..d30f5f8 100644
--- a/src/bundle.hpp
+++ b/src/bundle.hpp
@@ -1,6 +1,7 @@
#pragma once
#include "api/twitch/helix_client.hpp"
+#include "config.hpp"
#include "irc/client.hpp"
#include "localization/localization.hpp"
@@ -9,5 +10,6 @@ namespace bot {
irc::Client &irc_client;
const api::twitch::HelixClient &helix_client;
const bot::loc::Localization &localization;
+ const Configuration &configuration;
};
}