summaryrefslogtreecommitdiff
path: root/src/handlers.hpp
blob: ed74551108a368298959e385aae1ea992e4495cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "bundle.hpp"
#include "commands/command.hpp"
#include "irc/message.hpp"

namespace bot::handlers {
  void handle_private_message(
      const InstanceBundle &bundle,
      const command::CommandLoader &command_loader,
      const irc::Message<irc::MessageType::Privmsg> &message);
}