Files
ShortMe-URL-Shortener/run.py
2021-03-24 15:13:32 +02:00

6 lines
123 B
Python

# ------- local imports -------
from app.app import app
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5555)