summaryrefslogtreecommitdiff
path: root/src/timer.hpp
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-09 00:36:56 +0500
committerilotterytea <iltsu@alright.party>2024-05-09 00:36:56 +0500
commit54e2744e3135f0eab9c9ec1e2cb84d831233df68 (patch)
tree93727773bff284a16afbb915b26a066c0c9fb5a8 /src/timer.hpp
parent8c9f4843fc904f53197d6008c29df7ba5b1353e9 (diff)
feat: handler for timers
Diffstat (limited to 'src/timer.hpp')
-rw-r--r--src/timer.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/timer.hpp b/src/timer.hpp
new file mode 100644
index 0000000..40a52ee
--- /dev/null
+++ b/src/timer.hpp
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "config.hpp"
+#include "irc/client.hpp"
+
+namespace bot {
+ void create_timer_thread(irc::Client *irc_client,
+ Configuration *configuration);
+}