letterbomb/letterbomb.fcgi
2018-10-30 17:43:49 +09:00

7 lines
146 B
Python
Executable File

#!/usr/bin/python2
from flup.server.fcgi import WSGIServer
from app import app
if __name__ == '__main__':
WSGIServer(app, debug=False).run()