summaryrefslogtreecommitdiff
path: root/src/handlers.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers.hpp')
-rw-r--r--src/handlers.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/handlers.hpp b/src/handlers.hpp
new file mode 100644
index 0000000..ed74551
--- /dev/null
+++ b/src/handlers.hpp
@@ -0,0 +1,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);
+}