hello world; requirements.txt; gitignore

This commit is contained in:
Mimi Momo
2020-09-20 11:55:53 -05:00
commit 2fe51568e5
4 changed files with 16 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)
+7
View File
@@ -0,0 +1,7 @@
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)