LICENSE
MANIFEST.in
README.md
pyproject.toml
hexcore/__init__.py
hexcore/__main__.py
hexcore/config.py
hexcore/py.typed
hexcore/types.py
hexcore.egg-info/PKG-INFO
hexcore.egg-info/SOURCES.txt
hexcore.egg-info/dependency_links.txt
hexcore.egg-info/entry_points.txt
hexcore.egg-info/requires.txt
hexcore.egg-info/top_level.txt
hexcore/application/__init__.py
hexcore/application/dtos/__init__.py
hexcore/application/dtos/base.py
hexcore/application/dtos/query.py
hexcore/application/use_cases/__init__.py
hexcore/application/use_cases/base.py
hexcore/application/use_cases/query.py
hexcore/domain/__init__.py
hexcore/domain/base.py
hexcore/domain/events.py
hexcore/domain/exceptions.py
hexcore/domain/repositories.py
hexcore/domain/services.py
hexcore/domain/uow.py
hexcore/domain/auth/__init__.py
hexcore/domain/auth/permissions.py
hexcore/domain/auth/value_objects.py
hexcore/infrastructure/__init__.py
hexcore/infrastructure/cli.py
hexcore/infrastructure/api/__init__.py
hexcore/infrastructure/api/utils.py
hexcore/infrastructure/cache/__init__.py
hexcore/infrastructure/cache/cache_backends/__init__.py
hexcore/infrastructure/cache/cache_backends/memory.py
hexcore/infrastructure/cache/cache_backends/redis.py
hexcore/infrastructure/events/__init__.py
hexcore/infrastructure/events/events_backends/__init__.py
hexcore/infrastructure/events/events_backends/memory.py
hexcore/infrastructure/repositories/__init__.py
hexcore/infrastructure/repositories/base.py
hexcore/infrastructure/repositories/decorators.py
hexcore/infrastructure/repositories/implementations.py
hexcore/infrastructure/repositories/utils.py
hexcore/infrastructure/repositories/orms/__init__.py
hexcore/infrastructure/repositories/orms/beanie/__init__.py
hexcore/infrastructure/repositories/orms/beanie/utils.py
hexcore/infrastructure/repositories/orms/sqlalchemy/__init__.py
hexcore/infrastructure/repositories/orms/sqlalchemy/session.py
hexcore/infrastructure/repositories/orms/sqlalchemy/utils.py
hexcore/infrastructure/uow/__init__.py
hexcore/infrastructure/uow/decorators.py
hexcore/infrastructure/uow/helpers.py
scripts/__init__.py
scripts/main.py
tests/conftest.py
tests/test_basic.py
tests/test_beanie_query_utils.py
tests/test_config_loading.py
tests/test_domain_service_query.py
tests/test_infrastructure_query_path.py
tests/test_query_field_validation.py
tests/test_repositories_utils.py
tests/test_uow_session_regression.py
tests/test_use_cases_query.py