LiKenun's picture
W.I.P.
9fd6e20
raw
history blame contribute delete
161 Bytes
from enum import auto, StrEnum
class EventType(StrEnum):
INCOMING_CONTENT = auto()
INCOMING_SLACK_MESSAGE = auto()
OUTGOING_SLACK_RESPONSE = auto()