-
Karel van Klink authoredKarel van Klink authored
__init__.py 415 B
from uuid import uuid4
LSO_RESULT_SUCCESS = {
"callback_result": {
"status": "success",
"job_id": str(uuid4()),
"output": "parsed_output",
"return_code": 0,
},
}
LSO_RESULT_FAILURE = {
"callback_result": {
"status": "failure",
"job_id": str(uuid4()),
"output": "parsed_output",
"return_code": 1,
},
}
USER_CONFIRM_EMPTY_FORM = [{}]