blob: 6f29a506080a650776cb526e9e5eaa676401ca1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
namespace bot {
namespace command {
class CommandLoader;
}
class InstanceBundle;
}
#include "api/twitch/helix_client.hpp"
#include "commands/command.hpp"
#include "config.hpp"
#include "irc/client.hpp"
#include "localization/localization.hpp"
namespace bot {
struct InstanceBundle {
irc::Client &irc_client;
const api::twitch::HelixClient &helix_client;
const bot::loc::Localization &localization;
const Configuration &configuration;
const command::CommandLoader &command_loader;
};
}
|