From 95b6fd0451899457f8f76ec41ab3a9daf59139cf Mon Sep 17 00:00:00 2001 From: Xuwznln <18435084+Xuwznln@users.noreply.github.com> Date: Thu, 11 Sep 2025 16:38:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Euat=E7=9A=84=E5=9C=B0?= =?UTF-8?q?=E5=9D=80=E6=9B=BF=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- unilabos/app/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unilabos/app/main.py b/unilabos/app/main.py index 6377d864..cde79ef0 100644 --- a/unilabos/app/main.py +++ b/unilabos/app/main.py @@ -216,6 +216,9 @@ def main(): if args_dict["addr"] == "test": print_status("使用测试环境地址", "info") HTTPConfig.remote_addr = "https://uni-lab.test.bohrium.com/api/v1" + elif args_dict["addr"] == "uat": + print_status("使用uat环境地址", "info") + HTTPConfig.remote_addr = "https://uni-lab.uat.bohrium.com/api/v1" elif args_dict["addr"] == "local": print_status("使用本地环境地址", "info") HTTPConfig.remote_addr = "http://127.0.0.1:48197/api/v1"