v0.8.0 - Gino Backend
🎉 Highlights
With the release of v0.6.0 fastapi-crudrouter now supports Gino as an async backend! When generating routes, GinoCRUDRouter will automatically tie into your database using your Gino models. To use it, simply pass your Gino database model, a database reference, and your pydantic.
GinoCRUDRouter(
schema=MyPydanticModel,
db_model=MyModel,
db=db
)
Check out the docs for more details on how to use the GinoCRUDRouter.