letterbomb/letterbomb.fcgi

7 lines
146 B
Plaintext
Raw Normal View History

2018-10-30 09:39:07 +01:00
#!/usr/bin/python2
from flup.server.fcgi import WSGIServer
from app import app
if __name__ == '__main__':
WSGIServer(app, debug=False).run()