rustigram_types/reaction.rs
1/// Reaction types that can be set on messages.
2///
3/// A reaction is either a standard emoji (`ReactionType::Emoji`), a custom
4/// emoji (`ReactionType::CustomEmoji`), or a paid star reaction
5/// (`ReactionType::Paid`).
6///
7/// Use `BotClient::set_message_reaction` in `rustigram-api` to set or remove reactions.
8pub use crate::message::ReactionType;