hurl/integration/server.py

6 lines
116 B
Python
Raw Normal View History

from app import app, load_tests
2020-08-27 10:07:46 +03:00
if __name__ == "__main__":
load_tests()
app.run(host="0.0.0.0", port=8000)