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')