exact_data2023/run.py
Maciej Ścigacz e5c08ed0fe test
2023-05-30 17:42:17 +02:00

11 lines
143 B
Python

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