
#####   THE NEW UPDATED FILE FOR DJNAGO  ##########
import importlib.util
import sys

# Set the path to the wsgi.py file
wsgi_file_path = '/home/victorns/testing.victoriavisaconsultants.com/victoriavisaconsultants/victoriavisa/wsgi.py'

# Load the wsgi.py module
spec = importlib.util.spec_from_file_location("wsgi", wsgi_file_path)
wsgi = importlib.util.module_from_spec(spec)
sys.modules["wsgi"] = wsgi
spec.loader.exec_module(wsgi)

# Now the 'application' callable should be available from wsgi.py
application = wsgi.application

