blob: 33b57b2885076564aa4e48452ad59f8bc10dec03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "bundle.hpp"
#include "commands/command.hpp"
#include "irc/message.hpp"
#include "pqxx/pqxx"
namespace bot::handlers {
void handle_private_message(
const InstanceBundle &bundle,
const command::CommandLoader &command_loader,
const irc::Message<irc::MessageType::Privmsg> &message,
const pqxx::work &work);
}
|