flaschengeist/run.py

10 lines
134 B
Python
Raw Normal View History

2019-01-13 19:07:46 +00:00
from geruecht import app
2019-04-17 12:46:46 +00:00
""" Main
Start the backend
"""
2019-01-13 19:07:46 +00:00
if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')