From e30d50845a84b77ed942db0038d9178cef1acf36 Mon Sep 17 00:00:00 2001 From: yanweidong Date: Fri, 12 Sep 2025 23:27:14 +0800 Subject: [PATCH] =?UTF-8?q?feat(vars):=20=E6=B7=BB=E5=8A=A0=20OK=20?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在 status.go 文件中添加了新的状态码 OK,值为 "OK"。这个状态码可以用于表示系统或组件运行正常的情况。 --- vars/status.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vars/status.go b/vars/status.go index 3e54a1c..94ffa18 100644 --- a/vars/status.go +++ b/vars/status.go @@ -5,4 +5,6 @@ const ( NormalStatus = 1 // DisabledStatus . DisabledStatus = -1 + + OK string = "OK" )