7 lines
88 B
Python
7 lines
88 B
Python
from enum import Enum
|
|
|
|
|
|
class Intent(Enum):
|
|
CONTROL = 'control'
|
|
EVENT = 'event'
|