proxstar/wsgi.py
2018-01-23 03:36:08 -05:00

6 lines
132 B
Python

from proxstar import app
if __name__ == "__main__":
app.run(host=app.config['IP'], port=app.config['PORT'])
application = app