mirror of
https://github.com/ada-dmitry/kurator_bot.git
synced 2026-09-24 00:00:15 +00:00
17 lines
303 B
Python
17 lines
303 B
Python
from enum import Enum
|
|
|
|
|
|
class DiceEmoji(str, Enum):
|
|
"""
|
|
Emoji on which the dice throw animation is based
|
|
|
|
Source: https://core.telegram.org/bots/api#dice
|
|
"""
|
|
|
|
DICE = "🎲"
|
|
DART = "🎯"
|
|
BASKETBALL = "🏀"
|
|
FOOTBALL = "⚽"
|
|
SLOT_MACHINE = "🎰"
|
|
BOWLING = "🎳"
|