fastSD / models /interface_types.py
thejagstudio's picture
Upload 61 files
510ee71 verified
raw
history blame
No virus
186 Bytes
from enum import Enum
class InterfaceType(Enum):
WEBUI = "Web User Interface"
GUI = "Graphical User Interface"
CLI = "Command Line Interface"
API_SERVER = "API Server"