Spaces:
Sleeping
Sleeping
| from enum import Enum | |
| class InterfaceType(Enum): | |
| WEBUI = "Web User Interface" | |
| GUI = "Graphical User Interface" | |
| CLI = "Command Line Interface" | |