MRE/run.py
2025-04-09 13:22:17 -06:00

7 lines
112 B
Python

from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(port=80, host='0.0.0.0')