changed init

This commit is contained in:
Rainer 2025-04-29 23:59:52 +02:00
parent 0b0d8929d7
commit e31d858cd0
2 changed files with 0 additions and 0 deletions

10
app/__init__.py Normal file
View file

@ -0,0 +1,10 @@
from flask import Flask
def create_app():
app = Flask(__name__)
app.secret_key = "rennstopuhr2025"
from app.routes import main as main_blueprint
app.register_blueprint(main_blueprint)
return app