This commit is contained in:
Wolfang Torres
2026-06-19 23:51:42 +08:00
parent 8ae8063b81
commit 382af44c03

View File

@@ -30,7 +30,8 @@ def create_app():
app.config.from_pyfile("config.py", silent=True)
for blueprint in (homescreen, mainapp):
# for blueprint in (homescreen, mainapp):
for blueprint in (homescreen,):
app.register_blueprint(blueprint)
return app