6 lines
89 B
Python
6 lines
89 B
Python
from enum import Enum
|
|
|
|
|
|
class Type(str, Enum):
|
|
MESSAGE_RECEIVED = "message.received"
|