Files
recycling-project-solutions/run.py
T

6 lines
98 B
Python
Raw Normal View History

2025-07-21 19:20:44 +01:00
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)