aiteamutils 0.2.60__tar.gz → 0.2.61__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.60
3
+ Version: 0.2.61
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
@@ -1,5 +1,4 @@
1
1
  from .base_model import Base
2
- from .database import DatabaseService
3
2
  from .exceptions import (
4
3
  CustomException,
5
4
  ErrorCode,
@@ -28,9 +27,6 @@ __all__ = [
28
27
  "BaseService",
29
28
  "BaseRepository",
30
29
 
31
- # Database
32
- "DatabaseService",
33
-
34
30
  # Exceptions
35
31
  "CustomException",
36
32
  "ErrorCode",
@@ -10,7 +10,6 @@ from pydantic import BaseModel, field_validator
10
10
  import re
11
11
 
12
12
  from .exceptions import ErrorCode, CustomException
13
- from .database import DatabaseService
14
13
  from .base_model import Base
15
14
 
16
15
  def validate_with(validator_func, unique_check=None, skip_if_none=False):
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.61"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.60"
File without changes
File without changes
File without changes
File without changes