fastsdtest / models /interface_types.py
bilegentile's picture
Upload folder using huggingface_hub
564df58 verified
raw
history blame contribute delete
No virus
156 Bytes
from enum import Enum
class InterfaceType(Enum):
WEBUI = "Web User Interface"
GUI = "Graphical User Interface"
CLI = "Command Line Interface"