mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02: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 = "🎳"
|