Feat(NSI): construction serveur sur Requetes GET
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
from bottle import get, run
|
||||
|
||||
@get('/hello')
|
||||
def hello():
|
||||
return "Hello World!"
|
||||
|
||||
run(host='localhost', port=8080, debug=True)
|
||||
Reference in New Issue
Block a user