This repository has been archived on 2025-05-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pi-race-timer/app/init.py
2025-04-29 23:36:37 +02:00

10 lines
226 B
Python

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