Files
mhapi/web/mhapi_fcgi.py
2015-03-19 19:59:45 -05:00

9 lines
161 B
Python
Executable File

#!/usr/bin/env python
from flup.server.fcgi import WSGIServer
from mhapi_wsgi import application
if __name__ == '__main__':
WSGIServer(application).run()