aiteamutils 0.2.4__tar.gz → 0.2.6__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/PKG-INFO +1 -1
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/__init__.py +1 -5
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/dependencies.py +2 -2
- aiteamutils-0.2.6/aiteamutils/version.py +2 -0
- aiteamutils-0.2.4/aiteamutils/version.py +0 -2
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/.gitignore +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/README.md +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/base_model.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/base_repository.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/base_service.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/cache.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/config.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/database.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/enums.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/exceptions.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/security.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/aiteamutils/validators.py +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/pyproject.toml +0 -0
- {aiteamutils-0.2.4 → aiteamutils-0.2.6}/setup.py +0 -0
@@ -20,7 +20,6 @@ from .base_service import BaseService
|
|
20
20
|
from .base_repository import BaseRepository
|
21
21
|
from .validators import validate_with
|
22
22
|
from .enums import ActivityType
|
23
|
-
from .cache import CacheManager
|
24
23
|
from .version import __version__
|
25
24
|
|
26
25
|
__all__ = [
|
@@ -52,8 +51,5 @@ __all__ = [
|
|
52
51
|
"validate_with",
|
53
52
|
|
54
53
|
# Enums
|
55
|
-
"ActivityType"
|
56
|
-
|
57
|
-
# Cache
|
58
|
-
"CacheManager"
|
54
|
+
"ActivityType"
|
59
55
|
]
|
@@ -4,7 +4,7 @@ from fastapi import Depends, status
|
|
4
4
|
from fastapi.security import OAuth2PasswordBearer
|
5
5
|
from jose import JWTError, jwt
|
6
6
|
|
7
|
-
from .database import
|
7
|
+
from .database import DatabaseService
|
8
8
|
from .exceptions import CustomException, ErrorCode
|
9
9
|
|
10
10
|
class Settings:
|
@@ -81,7 +81,7 @@ class ServiceRegistry:
|
|
81
81
|
# ServiceRegistry 초기화
|
82
82
|
service_registry = ServiceRegistry()
|
83
83
|
|
84
|
-
def get_database_service(db: AsyncSession
|
84
|
+
async def get_database_service(db: AsyncSession) -> DatabaseService:
|
85
85
|
"""DatabaseService 의존성
|
86
86
|
|
87
87
|
Args:
|
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
|