aiteamutils 0.2.43__tar.gz → 0.2.44__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/PKG-INFO +1 -1
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/dependencies.py +1 -4
- aiteamutils-0.2.44/aiteamutils/version.py +2 -0
- aiteamutils-0.2.43/aiteamutils/version.py +0 -2
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/.cursorrules +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/.gitignore +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/README.md +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/__init__.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/base_model.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/base_repository.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/base_service.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/cache.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/config.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/database.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/enums.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/exceptions.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/security.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/aiteamutils/validators.py +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/pyproject.toml +0 -0
- {aiteamutils-0.2.43 → aiteamutils-0.2.44}/setup.py +0 -0
@@ -47,7 +47,7 @@ class ServiceRegistry:
|
|
47
47
|
# ServiceRegistry 초기화
|
48
48
|
service_registry = ServiceRegistry()
|
49
49
|
|
50
|
-
|
50
|
+
def get_service(name: str):
|
51
51
|
"""등록된 서비스를 가져오는 의존성 함수
|
52
52
|
|
53
53
|
Args:
|
@@ -55,9 +55,6 @@ async def get_service(name: str):
|
|
55
55
|
|
56
56
|
Returns:
|
57
57
|
Callable: 서비스 인스턴스를 반환하는 의존성 함수
|
58
|
-
|
59
|
-
Raises:
|
60
|
-
CustomException: 서비스 생성 실패 시
|
61
58
|
"""
|
62
59
|
async def _get_service(db_service = Depends(get_database_service)):
|
63
60
|
try:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|