10 lines
226 B
Python
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
|