summaryrefslogtreecommitdiff
path: root/src/bundle.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-04-21 16:03:34 +0500
committerilotterytea <iltsu@alright.party>2024-04-21 16:03:34 +0500
commita28e803f43bbf0f263df6ec4100bf0b1f1deb4bf (patch)
treecd0ec0d876e7ae1c994cda342ff7cc0834ba7c71 /src/bundle.hpp
parentd3cad81b14f41d1345d39c8bc0a1cb556bca4f09 (diff)
feat: instance bundle
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;
+ };
+}