From 006f3c413f496cb4ce6ff808f253245dd979c8c2 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 29 Apr 2026 09:56:27 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=BB=98=E8=AE=A4=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E8=81=8A=E5=A4=A9=E9=A1=B5index.html?= =?UTF-8?q?=EF=BC=88=E5=90=AB=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/web_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/web_api.py b/core/web_api.py index 0732244..b4cb425 100644 --- a/core/web_api.py +++ b/core/web_api.py @@ -149,8 +149,8 @@ def admin_required(f): @app.route('/') @login_required def index(): - """返回星图页面(默认首页)""" - return app.send_static_file('graph.html') + """返回聊天页面(默认首页)""" + return app.send_static_file('index.html') @app.route('/graph.html')