summaryrefslogtreecommitdiff
path: root/bot/src/schemas/stream.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/schemas/stream.hpp')
-rw-r--r--bot/src/schemas/stream.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/bot/src/schemas/stream.hpp b/bot/src/schemas/stream.hpp
new file mode 100644
index 0000000..a636ea5
--- /dev/null
+++ b/bot/src/schemas/stream.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <string>
+
+namespace bot::schemas {
+ enum EventType { LIVE, OFFLINE, TITLE, GAME, CUSTOM = 99 };
+ EventType string_to_event_type(const std::string &type);
+
+ enum EventFlag { MASSPING };
+
+}