summaryrefslogtreecommitdiff
path: root/src/bundle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bundle.hpp')
-rw-r--r--src/bundle.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/bundle.hpp b/src/bundle.hpp
new file mode 100644
index 0000000..fa8d80a
--- /dev/null
+++ b/src/bundle.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "irc/client.hpp"
+#include "localization/localization.hpp"
+
+namespace bot {
+ struct InstanceBundle {
+ const irc::Client &irc_client;
+ const bot::loc::Localization &localization;
+ };
+}