summaryrefslogtreecommitdiff
path: root/bot/src/bundle.hpp
blob: a3434167b082a4833aca93dd13fb46b2f1b7db4c (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
26
27
#pragma once

namespace bot {
  namespace command {
    class CommandLoader;
  }

  class InstanceBundle;
}

#include "api/kick.hpp"
#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 api::KickAPIClient &kick_api_client;
      const bot::loc::Localization &localization;
      const Configuration &configuration;
      const command::CommandLoader &command_loader;
  };
}