exact_data2023/run.py
Maciej Ścigacz d23909e925 test
2023-05-30 16:59:54 +02:00

9 lines
141 B
Python

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