Files
pub1c-web/run.py

8 lines
104 B
Python
Raw Normal View History

2021-05-21 15:19:11 +03:00
2021-10-07 14:31:12 +03:00
from app.app import create_app
2021-05-21 15:19:11 +03:00
2021-10-07 14:31:12 +03:00
app = create_app()
2021-05-21 15:19:11 +03:00
if __name__ == '__main__':
app.run(debug=True)