Files
Personal-Finance-Management/wsgi.py
T
2026-05-31 10:03:28 -04:00

7 lines
89 B
Python

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