summaryrefslogtreecommitdiff
path: root/bot/src/schemas/stream.hpp
blob: a636ea5462e0c404d8add4917f165d8afa3eff9e (plain)
1
2
3
4
5
6
7
8
9
10
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 };

}