We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314a25f commit dffcc2dCopy full SHA for dffcc2d
README.md
@@ -159,6 +159,13 @@ app.include_router(crud_route_2)
159
160
### Foreign Tree With Relationship
161
```python
162
+from fastapi import FastAPI
163
+from fastapi_quickcrud import crud_router_builder
164
+from sqlalchemy import *
165
+from sqlalchemy.orm import *
166
+from fastapi_quickcrud.crud_router import generic_sql_crud_router_builder
167
+
168
+Base = declarative_base()
169
170
class Account(Base):
171
__tablename__ = "account"
0 commit comments