基础信息读取错误,未修改完成

This commit is contained in:
dxc
2026-01-28 08:54:11 +08:00
parent 9a04f65eb7
commit 7a4ea8acfb
11 changed files with 624 additions and 264 deletions

View File

@ -5,4 +5,8 @@ app = create_app()
if __name__ == '__main__':
# debug=True 修改代码后会自动重启
print("\n====== 当前所有注册路由 ======")
for rule in app.url_map.iter_rules():
print(f"{rule} -> {rule.endpoint}")
print("==============================\n")
app.run(host='0.0.0.0', port=5000, debug=True)