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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.4
3
+ Version: 0.2.6
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -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 get_db, DatabaseService
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 = Depends(get_db)) -> DatabaseService:
84
+ async def get_database_service(db: AsyncSession) -> DatabaseService:
85
85
  """DatabaseService 의존성
86
86
 
87
87
  Args:
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.6"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.4"
File without changes
File without changes
File without changes
File without changes