Adán Flores Ramírez
Frida Command interpreter to Gradio
a3643ce
raw
history blame contribute delete
196 Bytes
from enum import Enum
class Status(Enum):
TERMINAL_ERROR = -1
EXECUTION_ERROR = 0
EXECUTION_SUCCESS = 1
TARGET_NOT_FOUND = 2
SERVICE_CHECK = 3
TIMEOUT = 4
MOCKED = 5