Update const.py

This commit is contained in:
qiaofeng1227 2023-03-27 09:04:43 +08:00 committed by GitHub
parent 699be883b3
commit da449b0089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,12 +7,14 @@ RETURN_SUCCESS = 0
RETURN_FAIL = -1
# 应用状态定义
# 应用启动准备
# 应用启动准备 installing
RETURN_READY = 0
# 应用正在运行
RETURN_RUNNING = 1
# 应用已经停止
RETURN_STOP = 2
# 应用等待安装 waiting
RETURN_STOP = 3
# 应用错误或不存在
RETURN_ERROR = -1