feat(vars): 添加 OK 状态码

在 status.go 文件中添加了新的状态码 OK,值为 "OK"。这个状态码可以用于表示系统或组件运行正常的情况。
This commit is contained in:
yanweidong 2025-09-12 23:27:14 +08:00
parent b4cd51a6dc
commit e30d50845a
1 changed files with 2 additions and 0 deletions

View File

@ -5,4 +5,6 @@ const (
NormalStatus = 1
// DisabledStatus .
DisabledStatus = -1
OK string = "OK"
)