2022-01-21 18:00:27 -06:00

8 lines
88 B
Python

from bottle import route, run
@route('/')
def hello():
return "Hello World"
run()