diff options
| author | ilotterytea <iltsu@alright.party> | 2024-04-21 16:03:34 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-04-21 16:03:34 +0500 |
| commit | a28e803f43bbf0f263df6ec4100bf0b1f1deb4bf (patch) | |
| tree | cd0ec0d876e7ae1c994cda342ff7cc0834ba7c71 /src/bundle.hpp | |
| parent | d3cad81b14f41d1345d39c8bc0a1cb556bca4f09 (diff) | |
feat: instance bundle
Diffstat (limited to 'src/bundle.hpp')
| -rw-r--r-- | src/bundle.hpp | 11 |
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; + }; +} |
