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)
|