exact_data2023/run.py

10 lines
142 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()
2023-05-30 19:08:22 +02:00
2023-05-27 15:10:30 +02:00
if __name__ == "__main__":
app.run()