MRE/run.py

6 lines
107 B
Python
Raw Normal View History

from app import create_app
2025-03-14 20:31:32 +00:00
app = create_app()
2025-03-14 20:31:32 +00:00
if __name__ == '__main__':
app.run(ssl_context='adhoc')