summaryrefslogtreecommitdiff
path: root/bot/src/schemas/stream.hpp
blob: 9763ba91d6879bcc63ff830656d94de598f04548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <string>

namespace bot::schemas {
  enum EventType { LIVE, OFFLINE, TITLE, GAME, GITHUB = 10, CUSTOM = 99 };
  EventType string_to_event_type(const std::string &type);
  std::string event_type_to_string(const int &type);

  enum EventFlag { MASSPING };

}