hurl/tests/endpoints.py
2020-08-27 16:44:57 +02:00

11 lines
188 B
Python
Executable File

#!/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)