Initialize WSGI application by importing and creating the app instance.

This commit is contained in:
Yaro Kasear 2025-07-23 09:47:46 -05:00
parent 5e3f211dc0
commit be9e4afb4d

3
inventory/wsgi.py Normal file
View file

@ -0,0 +1,3 @@
from inventory import create_app
app = create_app()