7 lines
102 B
Python
7 lines
102 B
Python
import enum
|
|
|
|
|
|
class TelegramBotMethodEnum(enum.Enum):
|
|
WEBHOOK = "webhook"
|
|
POLLING = "polling"
|