fastsdcpuClone / models /interface_types.py
tejani's picture
Update models/interface_types.py
800f5c8 verified
raw
history blame contribute delete
185 Bytes
from enum import Enum
class InterfaceType(Enum):
WEBUI = "Web User Interface"
GUI = "Graphical User Interface"
CLI = "Command Line Interface"
API_SERVER = "API Server"