CP_EHRENAMT/run.py
2026-06-25 18:58:44 +02:00

11 lines
208 B
Python

"""Entrypoint. Startet die App über die Factory.
Lokal: flask --app run run (oder) python run.py
"""
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(debug=True)