9 lines
194 B
Python
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)
|