Add Bottle (#1232)

* Create Bottle.py

* increment count

* add to list
This commit is contained in:
calgary34
2022-01-19 17:11:25 -07:00
committed by GitHub
parent 1cae408c5f
commit 5fb0c46c99
2 changed files with 9 additions and 1 deletions

7
b/Bottle.py Normal file
View File

@@ -0,0 +1,7 @@
from bottle import route, run
@route('/hello')
def hello():
return "Hello World"
run()