Remove unused async database and CRUD modules

- Deleted `database_async.py`, `base_async.py`, and `organization_async.py` modules due to deprecation and unused references across the project.
- Improved overall codebase clarity and minimized redundant functionality by removing unused async database logic, CRUD utilities, and organization-related operations.
This commit is contained in:
Felipe Cardoso
2025-11-01 05:47:43 +01:00
parent ee938ce6a6
commit efcf10f9aa
20 changed files with 972 additions and 2283 deletions

View File

@@ -13,7 +13,7 @@ from slowapi.util import get_remote_address
from app.api.main import api_router
from app.core.config import settings
from app.core.database_async import check_database_health
from app.core.database import check_database_health
from app.core.exceptions import (
APIException,
api_exception_handler,