exact_data2023/run.py

9 lines
141 B
Python
Raw Normal View History

2023-05-27 15:10:30 +02:00
from application import create_app
app = create_app()
ctx = app.app_context()
ctx.push()
ctx.pop()
if __name__ == "__main__":
app.run()