debug: on port 8080, add on /test - hellow world
All checks were successful
Deploy on Push / deploy (push) Successful in 1m31s

This commit is contained in:
Stepan Vladovskiy 2024-05-06 04:06:08 -03:00
parent cf37dbf103
commit f35dcf2b1e

View File

@ -62,11 +62,8 @@ async def home(request: Request):
return JSONResponse({'message': 'Hello World!'})
routes = [
Route('/test', home, methods=['GET'])
]
routes = [
Route('/', upload_handler, methods=['POST']),
Route('/test', home, methods=['GET']),
Route('/', upload_handler, methods=['POST'])
]
app = Starlette(debug=True, routes=routes)