exact_data2023/run.py
Maciej Ścigacz ec402c2ab3 test
2023-05-30 16:33:00 +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()