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
first of all thank you for this essential extension to FastAPI !
I have a problem that might be to the lack of a functional example only.
I can not get any of the decorators to work together with extending the original app with VersionedFastAPI
@app.on_event("startup")
@repeat_every
the code is structured like in your example, where VersionedFastAPI(app) is the last line after all the endpoints:
app = FastAPI()
... some endpoints...
app = VersionedFastAPI(app)
Thank you very much for your help
The text was updated successfully, but these errors were encountered:
Hi,
first of all thank you for this essential extension to FastAPI !
I have a problem that might be to the lack of a functional example only.
I can not get any of the decorators to work together with extending the original app with VersionedFastAPI
@app.on_event("startup")
@repeat_every
the code is structured like in your example, where VersionedFastAPI(app) is the last line after all the endpoints:
app = FastAPI()
... some endpoints...
app = VersionedFastAPI(app)
Thank you very much for your help
The text was updated successfully, but these errors were encountered: