ThalamOS
a powerful Flask web application designed to enhance your storage management.
Loading...
Searching...
No Matches
wsgi.py
Go to the documentation of this file.
1"""
2WSGI entry point for the StorageManager application.
3
4This module initializes and runs the Flask application defined in the `app` package.
5When executed as the main module, it starts the Flask development server.
6
7Attributes:
8 app (Flask): The Flask application instance imported from the `app` package.
9"""
10from app import app
11
12
13# Add the application directory to the Python path
14if __name__ == "__main__":
15 app.run()