mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
11 lines
188 B
Python
11 lines
188 B
Python
|
#!/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)
|
||
|
|