6 lines
98 B
Python
Raw Normal View History

2025-02-22 16:55:41 +01:00
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)