You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To resolve, i had to include the routers ABOVE!!! the first endpoint
# up hereapp.include_router(now_router)
app.include_router(products_router)
app.include_router(payments_router)
@app.get("/", tags=["Status"], operation_id="ping")asyncdefping():
returnHTTPException(status_code=status.HTTP_200_OK)
# not down here
This is very specific but maybe it helps someone out 😄
The text was updated successfully, but these errors were encountered:
In case someone is using FastaAPI as a backend generating a python client.
I literally spent hours to resolve this issue:
To resolve, i had to include the routers ABOVE!!! the first endpoint
This is very specific but maybe it helps someone out 😄
The text was updated successfully, but these errors were encountered: