fix: 默认路由改为聊天页index.html(含文件上传)

This commit is contained in:
root
2026-04-29 09:56:27 +08:00
parent a1654db365
commit 006f3c413f

View File

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