blob: 3dd984b0c76277921689f6a5f9a59d7c12c12423 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "tgbot/types/ReactionTypeEmoji.h"
#include "tgbot/types/ReactionTypeCustomEmoji.h"
#include <string>
using namespace TgBot;
const std::string ReactionTypeEmoji::TYPE = "emoji";
const std::string ReactionTypeCustomEmoji::TYPE = "custom_emoji";
|