π Highlights
With the release of v0.6.0 fastapi-crudrouter **now supports [Gino](https://github.com/python-gino/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.
python
GinoCRUDRouter(
schema=MyPydanticModel,
db_model=MyModel,
db=db
)
Check out the [docs](https://fastapi-crudrouter.awtkns.com/backends/gino.html) for more details on how to use the GinoCRUDRouter.
β¨ Features
- Full Gino Support Turall 78
- Documentation improvements 69 75
π Bug Fixes
- All Path Prefixes are now correctly lowercase 64 65