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
"""
2
WSGI entry point for the StorageManager application.
3
4
This module initializes and runs the Flask application defined in the `app` package.
5
When executed as the main module, it starts the Flask development server.
6
7
Attributes:
8
app (Flask): The Flask application instance imported from the `app` package.
9
"""
10
from
app
import
app
11
12
13
# Add the application directory to the Python path
14
if
__name__ ==
"__main__"
:
15
app.run()
app
wsgi.py
Generated by
1.13.2