Bertrand Benjamin
3f34477494
All checks were successful
continuous-integration/drone/push Build is passing
8 lines
129 B
Python
8 lines
129 B
Python
from bottle import get, run
|
|
|
|
@get('/hello')
|
|
def hello():
|
|
return "Hello World!"
|
|
|
|
run(host='localhost', port=8080, debug=True)
|