exact_data2023/run.py
Maciej Ścigacz bf9dc2ad4f test
2023-05-30 19:08:22 +02:00

10 lines
142 B
Python

from application import create_app
app = create_app()
ctx = app.app_context()
ctx.push()
ctx.pop()
if __name__ == "__main__":
app.run()