9 lines
161 B
Python
Executable File
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()
|