Spaces:
Sleeping
Sleeping
File size: 156 Bytes
1ef0e71 |
1 2 3 4 5 6 7 8 |
from enum import Enum
class InterfaceType(Enum):
WEBUI = "Web User Interface"
GUI = "Graphical User Interface"
CLI = "Command Line Interface"
|