5 lines
117 B
Python
5 lines
117 B
Python
|
from enum import Enum
|
||
|
|
||
|
class GroupChatMessages(Enum):
|
||
|
WELCOME_GROUP_MESSAGE = "Welcome to the beginning of the "
|