mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-15 04:17:16 +00:00
7 lines
88 B
Python
7 lines
88 B
Python
from enum import Enum
|
|
|
|
|
|
class Intent(Enum):
|
|
CONTROL = 'control'
|
|
EVENT = 'event'
|