feat(vars): 添加 OK 状态码
在 status.go 文件中添加了新的状态码 OK,值为 "OK"。这个状态码可以用于表示系统或组件运行正常的情况。
This commit is contained in:
parent
b4cd51a6dc
commit
e30d50845a
|
@ -5,4 +5,6 @@ const (
|
|||
NormalStatus = 1
|
||||
// DisabledStatus .
|
||||
DisabledStatus = -1
|
||||
|
||||
OK string = "OK"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue