metanohi/nohi.wsgi

15 lines
236 B
Python

"""WSGI interface"""
import sys
import os.path
_absfile = os.path.abspath(__file__)
_filedir = os.path.dirname(_absfile)
sys.path.insert(0, _filedir)
import mege.wsgi
os.chdir(_filedir)
application = mege.wsgi.create_application()