Files
2026-04-16 08:27:07 -04:00

7 lines
112 B
Python

from app import create_app
app = create_app('development')
if __name__ == '__main__':
app.run(debug=True)