exact_data2023/run.py
Maciej Ścigacz 4ad5d09074 test
2023-05-30 17:57:13 +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()