Files
lapp/lapp.wsgi
T

8 lines
170 B
Python
Raw Normal View History

2026-01-01 21:33:12 +01:00
#!/usr/bin/python3
import sys
sys.path.insert(0, '/usr/share/projects/wsgi_apps/lapp')
2026-01-01 21:48:40 +01:00
# from lapp import app as application
import lapp
application = lapp.create_app()