fear: no testing route
All checks were successful
Deploy on Push / deploy (push) Successful in 31s

This commit is contained in:
Stepan Vladovskiy 2024-05-06 13:54:07 -03:00
parent be3d6f7f76
commit 265a3e3fe6

View File

@ -62,7 +62,6 @@ async def home(request: Request):
return JSONResponse({"message": "Hello World!"}) return JSONResponse({"message": "Hello World!"})
routes = [ routes = [
Route("/", home, methods=["GET"]),
Route("/", upload_handler, methods=["POST"]), Route("/", upload_handler, methods=["POST"]),
] ]