fix: refc code to use dictionary serialization instead of model_dump()

This commit is contained in:
swve 2024-04-06 13:54:28 +02:00
parent 7d86ff4a85
commit b57e6e55ce
6 changed files with 9 additions and 7 deletions

View file

@ -8,7 +8,7 @@ router = APIRouter()
@router.get("/config")
async def config():
config = get_learnhouse_config()
return config.model_dump()
return config.dict()