hello world; requirements.txt; gitignore
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
from bottle import route, run
|
||||
|
||||
@route('/hello')
|
||||
def hello():
|
||||
return "Hello World!"
|
||||
|
||||
run(host='localhost', port=8080, debug=True)
|
||||
@@ -0,0 +1,7 @@
|
||||
from bottle import route, run
|
||||
|
||||
@route('/hello')
|
||||
def hello():
|
||||
return "Hello World!"
|
||||
|
||||
run(host='localhost', port=8080, debug=True)
|
||||
Reference in New Issue
Block a user