mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
14 lines
234 B
Python
14 lines
234 B
Python
from enum import Enum
|
|
|
|
|
|
class ParseMode(str, Enum):
|
|
"""
|
|
Formatting options
|
|
|
|
Source: https://core.telegram.org/bots/api#formatting-options
|
|
"""
|
|
|
|
MARKDOWN_V2 = "MarkdownV2"
|
|
MARKDOWN = "Markdown"
|
|
HTML = "HTML"
|