This commit is contained in:
Rainer 2025-04-29 23:36:37 +02:00
commit ce1095bb24
27 changed files with 621 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