hurl/tests/endpoints.py

11 lines
188 B
Python
Raw Normal View History

2020-08-27 10:07:46 +03:00
#!/usr/bin/env python3
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
if __name__ == '__main__':
run(host='localhost', port=8080, debug=True)