station-announcer/app.py
2025-11-15 19:00:09 +00:00

9 lines
194 B
Python

"""Entry-point for running the Flask development server."""
from station_announcer import create_app
app = create_app()
if __name__ == "__main__": # pragma: no cover
app.run(debug=True)