From be9e4afb4dd5a4a970e16e6e65fe6bfb7f76d03a Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Wed, 23 Jul 2025 09:47:46 -0500 Subject: [PATCH] Initialize WSGI application by importing and creating the app instance. --- inventory/wsgi.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 inventory/wsgi.py diff --git a/inventory/wsgi.py b/inventory/wsgi.py new file mode 100644 index 0000000..4047fd7 --- /dev/null +++ b/inventory/wsgi.py @@ -0,0 +1,3 @@ +from inventory import create_app + +app = create_app()