mirror of
https://github.com/d3vyce/fastapi-toolsets.git
synced 2026-03-01 17:00:48 +01:00
* feat: add sort_params helper in CrudFactory * docs: add sorting * fix: change sort_by to order_by
10 lines
207 B
Python
10 lines
207 B
Python
from fastapi import FastAPI
|
|
|
|
from fastapi_toolsets.exceptions import init_exceptions_handlers
|
|
|
|
from .routes import router
|
|
|
|
app = FastAPI()
|
|
init_exceptions_handlers(app=app)
|
|
app.include_router(router=router)
|