mirror of
https://github.com/MrSedan/neuro-reply-bot-reworked.git
synced 2026-01-14 13:39:42 +03:00
8 lines
111 B
Python
8 lines
111 B
Python
from enum import Enum
|
|
|
|
|
|
class EGetAll(Enum):
|
|
all = 'all'
|
|
will_post = 'will-post'
|
|
posted = 'posted'
|