Files
quality_recticel/py_app/run.py
2025-10-05 14:32:47 -04:00

7 lines
99 B
Python
Executable File

from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)