Feat(NSI): construction serveur sur Requetes GET
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-01-10 10:26:34 +01:00
parent 05c5ad50fb
commit 3f34477494
8 changed files with 142 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
from bottle import get, run
@get('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)